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.

2053 lines
65KB

  1. /*
  2. * Carla Plugin
  3. * Copyright (C) 2011-2014 Filipe Coelho <falktx@falktx.com>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation; either version 2 of
  8. * the License, or any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * For a full copy of the GNU General Public License see the doc/GPL.txt file.
  16. */
  17. #include "CarlaPluginInternal.hpp"
  18. #include "CarlaEngine.hpp"
  19. #include "CarlaBackendUtils.hpp"
  20. #include "CarlaBase64Utils.hpp"
  21. #include "CarlaMathUtils.hpp"
  22. #include "CarlaPluginUI.hpp"
  23. #include <ctime>
  24. #include "juce_core.h"
  25. using juce::CharPointer_UTF8;
  26. using juce::File;
  27. using juce::MemoryOutputStream;
  28. using juce::ScopedPointer;
  29. using juce::String;
  30. using juce::XmlDocument;
  31. using juce::XmlElement;
  32. CARLA_BACKEND_START_NAMESPACE
  33. // -------------------------------------------------------------------
  34. // Fallback data
  35. static const ParameterData kParameterDataNull = { PARAMETER_UNKNOWN, 0x0, PARAMETER_NULL, -1, -1, 0 };
  36. static const ParameterRanges kParameterRangesNull = { 0.0f, 0.0f, 1.0f, 0.01f, 0.0001f, 0.1f };
  37. static const MidiProgramData kMidiProgramDataNull = { 0, 0, nullptr };
  38. static const CustomData kCustomDataNull = { nullptr, nullptr, nullptr };
  39. static const CustomData kCustomDataFallback = { nullptr, nullptr, nullptr };
  40. static /* */ CustomData kCustomDataFallbackNC = { nullptr, nullptr, nullptr };
  41. static const PluginPostRtEvent kPluginPostRtEventFallback = { kPluginPostRtEventNull, 0, 0, 0.0f };
  42. // -------------------------------------------------------------------
  43. // ParamSymbol struct, needed for CarlaPlugin::loadStateSave()
  44. struct ParamSymbol {
  45. int32_t index;
  46. const char* symbol;
  47. ParamSymbol(const uint32_t i, const char* const s)
  48. : index(static_cast<int32_t>(i)),
  49. symbol(carla_strdup(s)) {}
  50. ~ParamSymbol() noexcept
  51. {
  52. CARLA_SAFE_ASSERT_RETURN(symbol != nullptr,)
  53. delete[] symbol;
  54. symbol = nullptr;
  55. }
  56. #ifdef CARLA_PROPER_CPP11_SUPPORT
  57. ParamSymbol() = delete;
  58. CARLA_DECLARE_NON_COPY_STRUCT(ParamSymbol)
  59. #endif
  60. };
  61. // -------------------------------------------------------------------
  62. // Constructor and destructor
  63. CarlaPlugin::CarlaPlugin(CarlaEngine* const engine, const uint id)
  64. : pData(new ProtectedData(engine, id))
  65. {
  66. CARLA_SAFE_ASSERT_RETURN(engine != nullptr,);
  67. CARLA_SAFE_ASSERT(id < engine->getMaxPluginNumber());
  68. carla_debug("CarlaPlugin::CarlaPlugin(%p, %i)", engine, id);
  69. switch (engine->getProccessMode())
  70. {
  71. case ENGINE_PROCESS_MODE_SINGLE_CLIENT:
  72. case ENGINE_PROCESS_MODE_MULTIPLE_CLIENTS:
  73. CARLA_SAFE_ASSERT(id < MAX_DEFAULT_PLUGINS);
  74. break;
  75. case ENGINE_PROCESS_MODE_CONTINUOUS_RACK:
  76. CARLA_SAFE_ASSERT(id < MAX_RACK_PLUGINS);
  77. break;
  78. case ENGINE_PROCESS_MODE_PATCHBAY:
  79. CARLA_SAFE_ASSERT(id < MAX_PATCHBAY_PLUGINS);
  80. break;
  81. case ENGINE_PROCESS_MODE_BRIDGE:
  82. CARLA_SAFE_ASSERT(id == 0);
  83. break;
  84. }
  85. }
  86. CarlaPlugin::~CarlaPlugin()
  87. {
  88. carla_debug("CarlaPlugin::~CarlaPlugin()");
  89. delete pData;
  90. }
  91. // -------------------------------------------------------------------
  92. // Information (base)
  93. uint CarlaPlugin::getId() const noexcept
  94. {
  95. return pData->id;
  96. }
  97. uint CarlaPlugin::getHints() const noexcept
  98. {
  99. return pData->hints;
  100. }
  101. uint CarlaPlugin::getOptionsEnabled() const noexcept
  102. {
  103. return pData->options;
  104. }
  105. bool CarlaPlugin::isEnabled() const noexcept
  106. {
  107. return pData->enabled;
  108. }
  109. const char* CarlaPlugin::getName() const noexcept
  110. {
  111. return pData->name;
  112. }
  113. const char* CarlaPlugin::getFilename() const noexcept
  114. {
  115. return pData->filename;
  116. }
  117. const char* CarlaPlugin::getIconName() const noexcept
  118. {
  119. return pData->iconName;
  120. }
  121. PluginCategory CarlaPlugin::getCategory() const noexcept
  122. {
  123. return getPluginCategoryFromName(pData->name);
  124. }
  125. int64_t CarlaPlugin::getUniqueId() const noexcept
  126. {
  127. return 0;
  128. }
  129. uint32_t CarlaPlugin::getLatencyInFrames() const noexcept
  130. {
  131. return 0;
  132. }
  133. // -------------------------------------------------------------------
  134. // Information (count)
  135. uint32_t CarlaPlugin::getAudioInCount() const noexcept
  136. {
  137. return pData->audioIn.count;
  138. }
  139. uint32_t CarlaPlugin::getAudioOutCount() const noexcept
  140. {
  141. return pData->audioOut.count;
  142. }
  143. uint32_t CarlaPlugin::getCVInCount() const noexcept
  144. {
  145. return pData->cvIn.count;
  146. }
  147. uint32_t CarlaPlugin::getCVOutCount() const noexcept
  148. {
  149. return pData->cvOut.count;
  150. }
  151. uint32_t CarlaPlugin::getMidiInCount() const noexcept
  152. {
  153. return (pData->extraHints & PLUGIN_EXTRA_HINT_HAS_MIDI_IN) ? 1 : 0;
  154. }
  155. uint32_t CarlaPlugin::getMidiOutCount() const noexcept
  156. {
  157. return (pData->extraHints & PLUGIN_EXTRA_HINT_HAS_MIDI_OUT) ? 1 : 0;
  158. }
  159. uint32_t CarlaPlugin::getParameterCount() const noexcept
  160. {
  161. return pData->param.count;
  162. }
  163. uint32_t CarlaPlugin::getParameterScalePointCount(const uint32_t parameterId) const noexcept
  164. {
  165. CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count, 0);
  166. return 0;
  167. }
  168. uint32_t CarlaPlugin::getProgramCount() const noexcept
  169. {
  170. return pData->prog.count;
  171. }
  172. uint32_t CarlaPlugin::getMidiProgramCount() const noexcept
  173. {
  174. return pData->midiprog.count;
  175. }
  176. uint32_t CarlaPlugin::getCustomDataCount() const noexcept
  177. {
  178. return static_cast<uint32_t>(pData->custom.count());
  179. }
  180. // -------------------------------------------------------------------
  181. // Information (current data)
  182. int32_t CarlaPlugin::getCurrentProgram() const noexcept
  183. {
  184. return pData->prog.current;
  185. }
  186. int32_t CarlaPlugin::getCurrentMidiProgram() const noexcept
  187. {
  188. return pData->midiprog.current;
  189. }
  190. const ParameterData& CarlaPlugin::getParameterData(const uint32_t parameterId) const noexcept
  191. {
  192. CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count, kParameterDataNull);
  193. return pData->param.data[parameterId];
  194. }
  195. const ParameterRanges& CarlaPlugin::getParameterRanges(const uint32_t parameterId) const noexcept
  196. {
  197. CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count, kParameterRangesNull);
  198. return pData->param.ranges[parameterId];
  199. }
  200. bool CarlaPlugin::isParameterOutput(const uint32_t parameterId) const noexcept
  201. {
  202. CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count, false);
  203. return (pData->param.data[parameterId].type == PARAMETER_OUTPUT);
  204. }
  205. const MidiProgramData& CarlaPlugin::getMidiProgramData(const uint32_t index) const noexcept
  206. {
  207. CARLA_SAFE_ASSERT_RETURN(index < pData->midiprog.count, kMidiProgramDataNull);
  208. return pData->midiprog.data[index];
  209. }
  210. const CustomData& CarlaPlugin::getCustomData(const uint32_t index) const noexcept
  211. {
  212. CARLA_SAFE_ASSERT_RETURN(index < pData->custom.count(), kCustomDataNull);
  213. return pData->custom.getAt(index, kCustomDataFallback);
  214. }
  215. std::size_t CarlaPlugin::getChunkData(void** const dataPtr) noexcept
  216. {
  217. CARLA_SAFE_ASSERT_RETURN(dataPtr != nullptr, 0);
  218. CARLA_SAFE_ASSERT(false); // this should never happen
  219. return 0;
  220. }
  221. // -------------------------------------------------------------------
  222. // Information (per-plugin data)
  223. uint CarlaPlugin::getOptionsAvailable() const noexcept
  224. {
  225. CARLA_SAFE_ASSERT(false); // this should never happen
  226. return 0x0;
  227. }
  228. float CarlaPlugin::getParameterValue(const uint32_t parameterId) const noexcept
  229. {
  230. CARLA_SAFE_ASSERT_RETURN(parameterId < getParameterCount(), 0.0f);
  231. CARLA_SAFE_ASSERT(false); // this should never happen
  232. return 0.0f;
  233. }
  234. float CarlaPlugin::getParameterScalePointValue(const uint32_t parameterId, const uint32_t scalePointId) const noexcept
  235. {
  236. CARLA_SAFE_ASSERT_RETURN(parameterId < getParameterCount(), 0.0f);
  237. CARLA_SAFE_ASSERT_RETURN(scalePointId < getParameterScalePointCount(parameterId), 0.0f);
  238. CARLA_SAFE_ASSERT(false); // this should never happen
  239. return 0.0f;
  240. }
  241. void CarlaPlugin::getLabel(char* const strBuf) const noexcept
  242. {
  243. strBuf[0] = '\0';
  244. }
  245. void CarlaPlugin::getMaker(char* const strBuf) const noexcept
  246. {
  247. strBuf[0] = '\0';
  248. }
  249. void CarlaPlugin::getCopyright(char* const strBuf) const noexcept
  250. {
  251. strBuf[0] = '\0';
  252. }
  253. void CarlaPlugin::getRealName(char* const strBuf) const noexcept
  254. {
  255. strBuf[0] = '\0';
  256. }
  257. void CarlaPlugin::getParameterName(const uint32_t parameterId, char* const strBuf) const noexcept
  258. {
  259. CARLA_SAFE_ASSERT_RETURN(parameterId < getParameterCount(),);
  260. CARLA_SAFE_ASSERT(false); // this should never happen
  261. strBuf[0] = '\0';
  262. }
  263. void CarlaPlugin::getParameterSymbol(const uint32_t parameterId, char* const strBuf) const noexcept
  264. {
  265. CARLA_SAFE_ASSERT_RETURN(parameterId < getParameterCount(),);
  266. strBuf[0] = '\0';
  267. }
  268. void CarlaPlugin::getParameterText(const uint32_t parameterId, char* const strBuf) const noexcept
  269. {
  270. CARLA_SAFE_ASSERT_RETURN(parameterId < getParameterCount(),);
  271. CARLA_SAFE_ASSERT(false); // this should never happen
  272. strBuf[0] = '\0';
  273. }
  274. void CarlaPlugin::getParameterUnit(const uint32_t parameterId, char* const strBuf) const noexcept
  275. {
  276. CARLA_SAFE_ASSERT_RETURN(parameterId < getParameterCount(),);
  277. strBuf[0] = '\0';
  278. }
  279. void CarlaPlugin::getParameterScalePointLabel(const uint32_t parameterId, const uint32_t scalePointId, char* const strBuf) const noexcept
  280. {
  281. CARLA_SAFE_ASSERT_RETURN(parameterId < getParameterCount(),);
  282. CARLA_SAFE_ASSERT_RETURN(scalePointId < getParameterScalePointCount(parameterId),);
  283. CARLA_SAFE_ASSERT(false); // this should never happen
  284. strBuf[0] = '\0';
  285. }
  286. float CarlaPlugin::getInternalParameterValue(const int32_t parameterId) const noexcept
  287. {
  288. #ifndef BUILD_BRIDGE
  289. CARLA_SAFE_ASSERT_RETURN(parameterId != PARAMETER_NULL && parameterId > PARAMETER_MAX, 0.0f);
  290. switch (parameterId)
  291. {
  292. case PARAMETER_ACTIVE:
  293. return pData->active;
  294. case PARAMETER_CTRL_CHANNEL:
  295. return pData->ctrlChannel;
  296. case PARAMETER_DRYWET:
  297. return pData->postProc.dryWet;
  298. case PARAMETER_VOLUME:
  299. return pData->postProc.volume;
  300. case PARAMETER_BALANCE_LEFT:
  301. return pData->postProc.balanceLeft;
  302. case PARAMETER_BALANCE_RIGHT:
  303. return pData->postProc.balanceRight;
  304. case PARAMETER_PANNING:
  305. return pData->postProc.panning;
  306. };
  307. #endif
  308. CARLA_SAFE_ASSERT_RETURN(parameterId >= 0, 0.0f);
  309. return getParameterValue(static_cast<uint32_t>(parameterId));
  310. }
  311. void CarlaPlugin::getProgramName(const uint32_t index, char* const strBuf) const noexcept
  312. {
  313. CARLA_SAFE_ASSERT_RETURN(index < pData->prog.count,);
  314. CARLA_SAFE_ASSERT_RETURN(pData->prog.names[index] != nullptr,);
  315. std::strncpy(strBuf, pData->prog.names[index], STR_MAX);
  316. }
  317. void CarlaPlugin::getMidiProgramName(const uint32_t index, char* const strBuf) const noexcept
  318. {
  319. CARLA_SAFE_ASSERT_RETURN(index < pData->midiprog.count,);
  320. CARLA_SAFE_ASSERT_RETURN(pData->midiprog.data[index].name != nullptr,);
  321. std::strncpy(strBuf, pData->midiprog.data[index].name, STR_MAX);
  322. }
  323. void CarlaPlugin::getParameterCountInfo(uint32_t& ins, uint32_t& outs) const noexcept
  324. {
  325. ins = 0;
  326. outs = 0;
  327. for (uint32_t i=0; i < pData->param.count; ++i)
  328. {
  329. if (pData->param.data[i].type == PARAMETER_INPUT)
  330. ++ins;
  331. else if (pData->param.data[i].type == PARAMETER_OUTPUT)
  332. ++outs;
  333. }
  334. }
  335. // -------------------------------------------------------------------
  336. // Set data (state)
  337. void CarlaPlugin::prepareForSave()
  338. {
  339. }
  340. void CarlaPlugin::resetParameters() noexcept
  341. {
  342. for (uint i=0; i < pData->param.count; ++i)
  343. {
  344. const ParameterData& paramData(pData->param.data[i]);
  345. const ParameterRanges& paramRanges(pData->param.ranges[i]);
  346. if (paramData.type != PARAMETER_INPUT)
  347. continue;
  348. if ((paramData.hints & PARAMETER_IS_ENABLED) == 0)
  349. continue;
  350. setParameterValue(i, paramRanges.def, true, true, true);
  351. }
  352. }
  353. void CarlaPlugin::randomizeParameters() noexcept
  354. {
  355. float value, random;
  356. char strBuf[STR_MAX+1];
  357. strBuf[STR_MAX] = '\0';
  358. std::srand(static_cast<uint>(std::time(nullptr)));
  359. for (uint i=0; i < pData->param.count; ++i)
  360. {
  361. const ParameterData& paramData(pData->param.data[i]);
  362. if (paramData.type != PARAMETER_INPUT)
  363. continue;
  364. if ((paramData.hints & PARAMETER_IS_ENABLED) == 0)
  365. continue;
  366. getParameterName(i, strBuf);
  367. if (std::strstr(strBuf, "olume") != nullptr)
  368. continue;
  369. if (std::strstr(strBuf, "Master") != nullptr)
  370. continue;
  371. const ParameterRanges& paramRanges(pData->param.ranges[i]);
  372. if (paramData.hints & PARAMETER_IS_BOOLEAN)
  373. {
  374. random = static_cast<float>(std::rand()) / static_cast<float>(RAND_MAX);
  375. value = random > 0.5 ? paramRanges.max : paramRanges.min;
  376. }
  377. else
  378. {
  379. random = static_cast<float>(std::rand()) / static_cast<float>(RAND_MAX);
  380. value = random * (paramRanges.max - paramRanges.min) + paramRanges.min;
  381. if (paramData.hints & PARAMETER_IS_INTEGER)
  382. value = std::rint(value);
  383. }
  384. setParameterValue(i, value, true, true, true);
  385. }
  386. }
  387. const CarlaStateSave& CarlaPlugin::getStateSave(const bool callPrepareForSave)
  388. {
  389. if (callPrepareForSave)
  390. prepareForSave();
  391. pData->stateSave.clear();
  392. const PluginType pluginType(getType());
  393. char strBuf[STR_MAX+1];
  394. // ---------------------------------------------------------------
  395. // Basic info
  396. getLabel(strBuf);
  397. pData->stateSave.type = carla_strdup(getPluginTypeAsString(getType()));
  398. pData->stateSave.name = carla_strdup(pData->name);
  399. pData->stateSave.label = carla_strdup(strBuf);
  400. pData->stateSave.uniqueId = getUniqueId();
  401. #ifndef BUILD_BRIDGE
  402. pData->stateSave.options = pData->options;
  403. #endif
  404. if (pData->filename != nullptr)
  405. pData->stateSave.binary = carla_strdup(pData->filename);
  406. #ifndef BUILD_BRIDGE
  407. // ---------------------------------------------------------------
  408. // Internals
  409. pData->stateSave.active = pData->active;
  410. pData->stateSave.dryWet = pData->postProc.dryWet;
  411. pData->stateSave.volume = pData->postProc.volume;
  412. pData->stateSave.balanceLeft = pData->postProc.balanceLeft;
  413. pData->stateSave.balanceRight = pData->postProc.balanceRight;
  414. pData->stateSave.panning = pData->postProc.panning;
  415. pData->stateSave.ctrlChannel = pData->ctrlChannel;
  416. #endif
  417. bool usingChunk = false;
  418. // ---------------------------------------------------------------
  419. // Chunk
  420. if (pData->options & PLUGIN_OPTION_USE_CHUNKS)
  421. {
  422. void* data = nullptr;
  423. const std::size_t dataSize(getChunkData(&data));
  424. if (data != nullptr && dataSize > 0)
  425. {
  426. pData->stateSave.chunk = CarlaString::asBase64(data, dataSize).dup();
  427. if (pluginType != PLUGIN_INTERNAL)
  428. usingChunk = true;
  429. }
  430. }
  431. // ---------------------------------------------------------------
  432. // Current Program
  433. if (pData->prog.current >= 0 && pluginType != PLUGIN_LV2 && pluginType != PLUGIN_GIG)
  434. {
  435. pData->stateSave.currentProgramIndex = pData->prog.current;
  436. pData->stateSave.currentProgramName = carla_strdup(pData->prog.names[pData->prog.current]);
  437. }
  438. // ---------------------------------------------------------------
  439. // Current MIDI Program
  440. if (pData->midiprog.current >= 0 && pluginType != PLUGIN_LV2 && pluginType != PLUGIN_SF2)
  441. {
  442. const MidiProgramData& mpData(pData->midiprog.getCurrent());
  443. pData->stateSave.currentMidiBank = static_cast<int32_t>(mpData.bank);
  444. pData->stateSave.currentMidiProgram = static_cast<int32_t>(mpData.program);
  445. }
  446. // ---------------------------------------------------------------
  447. // Parameters
  448. const float sampleRate(static_cast<float>(pData->engine->getSampleRate()));
  449. for (uint32_t i=0; i < pData->param.count; ++i)
  450. {
  451. const ParameterData& paramData(pData->param.data[i]);
  452. if ((paramData.hints & PARAMETER_IS_ENABLED) == 0)
  453. continue;
  454. const bool dummy = paramData.type != PARAMETER_INPUT || usingChunk;
  455. if (dummy && paramData.midiCC <= -1)
  456. continue;
  457. CarlaStateSave::Parameter* const stateParameter(new CarlaStateSave::Parameter());
  458. stateParameter->dummy = dummy;
  459. stateParameter->index = paramData.index;
  460. #ifndef BUILD_BRIDGE
  461. stateParameter->midiCC = paramData.midiCC;
  462. stateParameter->midiChannel = paramData.midiChannel;
  463. #endif
  464. getParameterName(i, strBuf);
  465. stateParameter->name = carla_strdup(strBuf);
  466. getParameterSymbol(i, strBuf);
  467. stateParameter->symbol = carla_strdup(strBuf);;
  468. if (! dummy)
  469. {
  470. stateParameter->value = getParameterValue(i);
  471. if (paramData.hints & PARAMETER_USES_SAMPLERATE)
  472. stateParameter->value /= sampleRate;
  473. }
  474. pData->stateSave.parameters.append(stateParameter);
  475. }
  476. // ---------------------------------------------------------------
  477. // Custom Data
  478. for (LinkedList<CustomData>::Itenerator it = pData->custom.begin(); it.valid(); it.next())
  479. {
  480. const CustomData& cData(it.getValue(kCustomDataFallback));
  481. CARLA_SAFE_ASSERT_CONTINUE(cData.isValid());
  482. CarlaStateSave::CustomData* stateCustomData(new CarlaStateSave::CustomData());
  483. stateCustomData->type = carla_strdup(cData.type);
  484. stateCustomData->key = carla_strdup(cData.key);
  485. stateCustomData->value = carla_strdup(cData.value);
  486. pData->stateSave.customData.append(stateCustomData);
  487. }
  488. return pData->stateSave;
  489. }
  490. void CarlaPlugin::loadStateSave(const CarlaStateSave& stateSave)
  491. {
  492. char strBuf[STR_MAX+1];
  493. const bool usesMultiProgs(pData->hints & PLUGIN_USES_MULTI_PROGS);
  494. const PluginType pluginType(getType());
  495. // ---------------------------------------------------------------
  496. // Part 1 - PRE-set custom data (only those which reload programs)
  497. for (CarlaStateSave::CustomDataItenerator it = stateSave.customData.begin(); it.valid(); it.next())
  498. {
  499. const CarlaStateSave::CustomData* const stateCustomData(it.getValue(nullptr));
  500. CARLA_SAFE_ASSERT_CONTINUE(stateCustomData != nullptr);
  501. CARLA_SAFE_ASSERT_CONTINUE(stateCustomData->isValid());
  502. const char* const key(stateCustomData->key);
  503. /**/ if (pluginType == PLUGIN_DSSI && (std::strcmp (key, "reloadprograms") == 0 ||
  504. std::strcmp (key, "load" ) == 0 ||
  505. std::strncmp(key, "patches", 7) == 0 ))
  506. pass();
  507. else if (usesMultiProgs && std::strcmp(key, "midiPrograms") == 0)
  508. pass();
  509. else
  510. continue;
  511. setCustomData(stateCustomData->type, key, stateCustomData->value, true);
  512. }
  513. // ---------------------------------------------------------------
  514. // Part 2 - set program
  515. if (stateSave.currentProgramIndex >= 0 && stateSave.currentProgramName != nullptr)
  516. {
  517. int32_t programId = -1;
  518. // index < count
  519. if (stateSave.currentProgramIndex < static_cast<int32_t>(pData->prog.count))
  520. {
  521. programId = stateSave.currentProgramIndex;
  522. }
  523. // index not valid, try to find by name
  524. else
  525. {
  526. for (uint32_t i=0; i < pData->prog.count; ++i)
  527. {
  528. strBuf[0] = '\0';
  529. getProgramName(i, strBuf);
  530. if (strBuf[0] != '\0' && std::strcmp(stateSave.currentProgramName, strBuf) == 0)
  531. {
  532. programId = static_cast<int32_t>(i);
  533. break;
  534. }
  535. }
  536. }
  537. // set program now, if valid
  538. if (programId >= 0)
  539. setProgram(programId, true, true, true);
  540. }
  541. // ---------------------------------------------------------------
  542. // Part 3 - set midi program
  543. if (stateSave.currentMidiBank >= 0 && stateSave.currentMidiProgram >= 0 && ! usesMultiProgs)
  544. setMidiProgramById(static_cast<uint32_t>(stateSave.currentMidiBank), static_cast<uint32_t>(stateSave.currentMidiProgram), true, true, true);
  545. // ---------------------------------------------------------------
  546. // Part 4a - get plugin parameter symbols
  547. LinkedList<ParamSymbol*> paramSymbols;
  548. if (pluginType == PLUGIN_LADSPA || pluginType == PLUGIN_LV2)
  549. {
  550. for (uint32_t i=0; i < pData->param.count; ++i)
  551. {
  552. strBuf[0] = '\0';
  553. getParameterSymbol(i, strBuf);
  554. if (strBuf[0] != '\0')
  555. {
  556. ParamSymbol* const paramSymbol(new ParamSymbol(i, strBuf));
  557. paramSymbols.append(paramSymbol);
  558. }
  559. }
  560. }
  561. // ---------------------------------------------------------------
  562. // Part 4b - set parameter values (carefully)
  563. const float sampleRate(static_cast<float>(pData->engine->getSampleRate()));
  564. for (CarlaStateSave::ParameterItenerator it = stateSave.parameters.begin(); it.valid(); it.next())
  565. {
  566. CarlaStateSave::Parameter* const stateParameter(it.getValue(nullptr));
  567. CARLA_SAFE_ASSERT_CONTINUE(stateParameter != nullptr);
  568. int32_t index = -1;
  569. if (pluginType == PLUGIN_LADSPA)
  570. {
  571. // Try to set by symbol, otherwise use index
  572. if (stateParameter->symbol != nullptr && stateParameter->symbol[0] != '\0')
  573. {
  574. for (LinkedList<ParamSymbol*>::Itenerator it2 = paramSymbols.begin(); it2.valid(); it2.next())
  575. {
  576. ParamSymbol* const paramSymbol(it2.getValue(nullptr));
  577. CARLA_SAFE_ASSERT_CONTINUE(paramSymbol != nullptr);
  578. CARLA_SAFE_ASSERT_CONTINUE(paramSymbol->symbol != nullptr);
  579. if (std::strcmp(stateParameter->symbol, paramSymbol->symbol) == 0)
  580. {
  581. index = paramSymbol->index;
  582. break;
  583. }
  584. }
  585. if (index == -1)
  586. index = stateParameter->index;
  587. }
  588. else
  589. index = stateParameter->index;
  590. }
  591. else if (pluginType == PLUGIN_LV2)
  592. {
  593. // Symbol only
  594. if (stateParameter->symbol != nullptr && stateParameter->symbol[0] != '\0')
  595. {
  596. for (LinkedList<ParamSymbol*>::Itenerator it2 = paramSymbols.begin(); it2.valid(); it2.next())
  597. {
  598. ParamSymbol* const paramSymbol(it2.getValue(nullptr));
  599. CARLA_SAFE_ASSERT_CONTINUE(paramSymbol != nullptr);
  600. CARLA_SAFE_ASSERT_CONTINUE(paramSymbol->symbol != nullptr);
  601. if (std::strcmp(stateParameter->symbol, paramSymbol->symbol) == 0)
  602. {
  603. index = paramSymbol->index;
  604. break;
  605. }
  606. }
  607. if (index == -1)
  608. carla_stderr("Failed to find LV2 parameter symbol '%s')", stateParameter->symbol);
  609. }
  610. else
  611. carla_stderr("LV2 Plugin parameter '%s' has no symbol", stateParameter->name);
  612. }
  613. else
  614. {
  615. // Index only
  616. index = stateParameter->index;
  617. }
  618. // Now set parameter
  619. if (index >= 0 && index < static_cast<int32_t>(pData->param.count))
  620. {
  621. //CARLA_SAFE_ASSERT(stateParameter->isInput == (pData
  622. if (! stateParameter->dummy)
  623. {
  624. if (pData->param.data[index].hints & PARAMETER_USES_SAMPLERATE)
  625. stateParameter->value *= sampleRate;
  626. setParameterValue(static_cast<uint32_t>(index), stateParameter->value, true, true, true);
  627. }
  628. #ifndef BUILD_BRIDGE
  629. setParameterMidiCC(static_cast<uint32_t>(index), stateParameter->midiCC, true, true);
  630. setParameterMidiChannel(static_cast<uint32_t>(index), stateParameter->midiChannel, true, true);
  631. #endif
  632. }
  633. else
  634. carla_stderr("Could not set parameter data for '%s'", stateParameter->name);
  635. }
  636. // ---------------------------------------------------------------
  637. // Part 4c - clear
  638. for (LinkedList<ParamSymbol*>::Itenerator it = paramSymbols.begin(); it.valid(); it.next())
  639. {
  640. ParamSymbol* const paramSymbol(it.getValue(nullptr));
  641. delete paramSymbol;
  642. }
  643. paramSymbols.clear();
  644. // ---------------------------------------------------------------
  645. // Part 5 - set custom data
  646. for (CarlaStateSave::CustomDataItenerator it = stateSave.customData.begin(); it.valid(); it.next())
  647. {
  648. const CarlaStateSave::CustomData* const stateCustomData(it.getValue(nullptr));
  649. CARLA_SAFE_ASSERT_CONTINUE(stateCustomData != nullptr);
  650. CARLA_SAFE_ASSERT_CONTINUE(stateCustomData->isValid());
  651. const char* const key(stateCustomData->key);
  652. if (pluginType == PLUGIN_DSSI && (std::strcmp (key, "reloadprograms") == 0 ||
  653. std::strcmp (key, "load" ) == 0 ||
  654. std::strncmp(key, "patches", 7) == 0 ))
  655. continue;
  656. if (usesMultiProgs && std::strcmp(key, "midiPrograms") == 0)
  657. continue;
  658. setCustomData(stateCustomData->type, key, stateCustomData->value, true);
  659. }
  660. // ---------------------------------------------------------------
  661. // Part 5x - set lv2 state
  662. if (pluginType == PLUGIN_LV2 && pData->custom.count() > 0)
  663. setCustomData(CUSTOM_DATA_TYPE_STRING, "CarlaLoadLv2StateNow", "true", true);
  664. // ---------------------------------------------------------------
  665. // Part 6 - set chunk
  666. if (stateSave.chunk != nullptr && (pData->options & PLUGIN_OPTION_USE_CHUNKS) != 0)
  667. {
  668. std::vector<uint8_t> chunk(carla_getChunkFromBase64String(stateSave.chunk));
  669. setChunkData(chunk.data(), chunk.size());
  670. }
  671. #ifndef BUILD_BRIDGE
  672. // ---------------------------------------------------------------
  673. // Part 6 - set internal stuff
  674. const uint availOptions(getOptionsAvailable());
  675. for (uint i=0; i<10; ++i) // FIXME - get this value somehow...
  676. {
  677. const uint option(1u << i);
  678. if (availOptions & option)
  679. setOption(option, (stateSave.options & option) != 0, true);
  680. }
  681. setDryWet(stateSave.dryWet, true, true);
  682. setVolume(stateSave.volume, true, true);
  683. setBalanceLeft(stateSave.balanceLeft, true, true);
  684. setBalanceRight(stateSave.balanceRight, true, true);
  685. setPanning(stateSave.panning, true, true);
  686. setCtrlChannel(stateSave.ctrlChannel, true, true);
  687. setActive(stateSave.active, true, true);
  688. #endif
  689. pData->engine->callback(ENGINE_CALLBACK_UPDATE, pData->id, 0, 0, 0.0f, nullptr);
  690. }
  691. bool CarlaPlugin::saveStateToFile(const char* const filename)
  692. {
  693. CARLA_SAFE_ASSERT_RETURN(filename != nullptr && filename[0] != '\0', false);
  694. carla_debug("CarlaPlugin::saveStateToFile(\"%s\")", filename);
  695. MemoryOutputStream out, streamState;
  696. getStateSave().dumpToMemoryStream(streamState);
  697. out << "<?xml version='1.0' encoding='UTF-8'?>\n";
  698. out << "<!DOCTYPE CARLA-PRESET>\n";
  699. out << "<CARLA-PRESET VERSION='2.0'>\n";
  700. out << streamState;
  701. out << "</CARLA-PRESET>\n";
  702. const String jfilename = String(CharPointer_UTF8(filename));
  703. File file(jfilename);
  704. if (file.replaceWithData(out.getData(), out.getDataSize()))
  705. return true;
  706. pData->engine->setLastError("Failed to write file");
  707. return false;
  708. }
  709. bool CarlaPlugin::loadStateFromFile(const char* const filename)
  710. {
  711. CARLA_SAFE_ASSERT_RETURN(filename != nullptr && filename[0] != '\0', false);
  712. carla_debug("CarlaPlugin::loadStateFromFile(\"%s\")", filename);
  713. const String jfilename = String(CharPointer_UTF8(filename));
  714. File file(jfilename);
  715. CARLA_SAFE_ASSERT_RETURN(file.existsAsFile(), false);
  716. XmlDocument xml(file);
  717. ScopedPointer<XmlElement> xmlElement(xml.getDocumentElement(true));
  718. CARLA_SAFE_ASSERT_RETURN(xmlElement != nullptr, false);
  719. CARLA_SAFE_ASSERT_RETURN(xmlElement->getTagName().equalsIgnoreCase("carla-preset"), false);
  720. // completely load file
  721. xmlElement = xml.getDocumentElement(false);
  722. CARLA_SAFE_ASSERT_RETURN(xmlElement != nullptr, false);
  723. if (pData->stateSave.fillFromXmlElement(xmlElement->getFirstChildElement()))
  724. loadStateSave(pData->stateSave);
  725. return true;
  726. }
  727. // -------------------------------------------------------------------
  728. // Set data (internal stuff)
  729. void CarlaPlugin::setId(const uint newId) noexcept
  730. {
  731. pData->id = newId;
  732. }
  733. void CarlaPlugin::setName(const char* const newName)
  734. {
  735. CARLA_SAFE_ASSERT_RETURN(newName != nullptr && newName[0] != '\0',);
  736. if (pData->name != nullptr)
  737. delete[] pData->name;
  738. pData->name = carla_strdup(newName);
  739. }
  740. void CarlaPlugin::setOption(const uint option, const bool yesNo, const bool sendCallback)
  741. {
  742. CARLA_SAFE_ASSERT_RETURN(getOptionsAvailable() & option,);
  743. if (yesNo)
  744. pData->options |= option;
  745. else
  746. pData->options &= ~option;
  747. #ifndef BUILD_BRIDGE
  748. if (sendCallback)
  749. pData->engine->callback(ENGINE_CALLBACK_OPTION_CHANGED, pData->id, static_cast<int>(option), yesNo ? 1 : 0, 0.0f, nullptr);
  750. #else
  751. // unused
  752. return; (void)sendCallback;
  753. #endif
  754. }
  755. void CarlaPlugin::setEnabled(const bool yesNo) noexcept
  756. {
  757. if (pData->enabled == yesNo)
  758. return;
  759. pData->enabled = yesNo;
  760. pData->masterMutex.lock();
  761. pData->masterMutex.unlock();
  762. }
  763. void CarlaPlugin::setActive(const bool active, const bool sendOsc, const bool sendCallback) noexcept
  764. {
  765. #ifndef BUILD_BRIDGE
  766. CARLA_SAFE_ASSERT_RETURN(sendOsc || sendCallback,); // never call this from RT
  767. #endif
  768. if (pData->active == active)
  769. return;
  770. {
  771. const ScopedSingleProcessLocker spl(this, true);
  772. if (active)
  773. activate();
  774. else
  775. deactivate();
  776. }
  777. pData->active = active;
  778. #ifndef BUILD_BRIDGE
  779. const float value(active ? 1.0f : 0.0f);
  780. # ifdef HAVE_LIBLO
  781. if (sendOsc && pData->engine->isOscControlRegistered())
  782. pData->engine->oscSend_control_set_parameter_value(pData->id, PARAMETER_ACTIVE, value);
  783. # endif
  784. if (sendCallback)
  785. pData->engine->callback(ENGINE_CALLBACK_PARAMETER_VALUE_CHANGED, pData->id, PARAMETER_ACTIVE, 0, value, nullptr);
  786. #endif
  787. // may be unused
  788. return; (void)sendOsc; (void)sendCallback;
  789. }
  790. #ifndef BUILD_BRIDGE
  791. void CarlaPlugin::setDryWet(const float value, const bool sendOsc, const bool sendCallback) noexcept
  792. {
  793. CARLA_SAFE_ASSERT(value >= 0.0f && value <= 1.0f);
  794. const float fixedValue(carla_fixValue<float>(0.0f, 1.0f, value));
  795. if (carla_compareFloats(pData->postProc.dryWet, fixedValue))
  796. return;
  797. pData->postProc.dryWet = fixedValue;
  798. #ifdef HAVE_LIBLO
  799. if (sendOsc && pData->engine->isOscControlRegistered())
  800. pData->engine->oscSend_control_set_parameter_value(pData->id, PARAMETER_DRYWET, fixedValue);
  801. #endif
  802. if (sendCallback)
  803. pData->engine->callback(ENGINE_CALLBACK_PARAMETER_VALUE_CHANGED, pData->id, PARAMETER_DRYWET, 0, fixedValue, nullptr);
  804. // may be unused
  805. return; (void)sendOsc;
  806. }
  807. void CarlaPlugin::setVolume(const float value, const bool sendOsc, const bool sendCallback) noexcept
  808. {
  809. CARLA_SAFE_ASSERT(value >= 0.0f && value <= 1.27f);
  810. const float fixedValue(carla_fixValue<float>(0.0f, 1.27f, value));
  811. if (carla_compareFloats(pData->postProc.volume, fixedValue))
  812. return;
  813. pData->postProc.volume = fixedValue;
  814. #ifdef HAVE_LIBLO
  815. if (sendOsc && pData->engine->isOscControlRegistered())
  816. pData->engine->oscSend_control_set_parameter_value(pData->id, PARAMETER_VOLUME, fixedValue);
  817. #endif
  818. if (sendCallback)
  819. pData->engine->callback(ENGINE_CALLBACK_PARAMETER_VALUE_CHANGED, pData->id, PARAMETER_VOLUME, 0, fixedValue, nullptr);
  820. // may be unused
  821. return; (void)sendOsc;
  822. }
  823. void CarlaPlugin::setBalanceLeft(const float value, const bool sendOsc, const bool sendCallback) noexcept
  824. {
  825. CARLA_SAFE_ASSERT(value >= -1.0f && value <= 1.0f);
  826. const float fixedValue(carla_fixValue<float>(-1.0f, 1.0f, value));
  827. if (carla_compareFloats(pData->postProc.balanceLeft, fixedValue))
  828. return;
  829. pData->postProc.balanceLeft = fixedValue;
  830. #ifdef HAVE_LIBLO
  831. if (sendOsc && pData->engine->isOscControlRegistered())
  832. pData->engine->oscSend_control_set_parameter_value(pData->id, PARAMETER_BALANCE_LEFT, fixedValue);
  833. #endif
  834. if (sendCallback)
  835. pData->engine->callback(ENGINE_CALLBACK_PARAMETER_VALUE_CHANGED, pData->id, PARAMETER_BALANCE_LEFT, 0, fixedValue, nullptr);
  836. // may be unused
  837. return; (void)sendOsc;
  838. }
  839. void CarlaPlugin::setBalanceRight(const float value, const bool sendOsc, const bool sendCallback) noexcept
  840. {
  841. CARLA_SAFE_ASSERT(value >= -1.0f && value <= 1.0f);
  842. const float fixedValue(carla_fixValue<float>(-1.0f, 1.0f, value));
  843. if (carla_compareFloats(pData->postProc.balanceRight, fixedValue))
  844. return;
  845. pData->postProc.balanceRight = fixedValue;
  846. #ifdef HAVE_LIBLO
  847. if (sendOsc && pData->engine->isOscControlRegistered())
  848. pData->engine->oscSend_control_set_parameter_value(pData->id, PARAMETER_BALANCE_RIGHT, fixedValue);
  849. #endif
  850. if (sendCallback)
  851. pData->engine->callback(ENGINE_CALLBACK_PARAMETER_VALUE_CHANGED, pData->id, PARAMETER_BALANCE_RIGHT, 0, fixedValue, nullptr);
  852. // may be unused
  853. return; (void)sendOsc;
  854. }
  855. void CarlaPlugin::setPanning(const float value, const bool sendOsc, const bool sendCallback) noexcept
  856. {
  857. CARLA_SAFE_ASSERT(value >= -1.0f && value <= 1.0f);
  858. const float fixedValue(carla_fixValue<float>(-1.0f, 1.0f, value));
  859. if (carla_compareFloats(pData->postProc.panning, fixedValue))
  860. return;
  861. pData->postProc.panning = fixedValue;
  862. #ifdef HAVE_LIBLO
  863. if (sendOsc && pData->engine->isOscControlRegistered())
  864. pData->engine->oscSend_control_set_parameter_value(pData->id, PARAMETER_PANNING, fixedValue);
  865. #endif
  866. if (sendCallback)
  867. pData->engine->callback(ENGINE_CALLBACK_PARAMETER_VALUE_CHANGED, pData->id, PARAMETER_PANNING, 0, fixedValue, nullptr);
  868. // may be unused
  869. return; (void)sendOsc;
  870. }
  871. #endif // ! BUILD_BRIDGE
  872. void CarlaPlugin::setCtrlChannel(const int8_t channel, const bool sendOsc, const bool sendCallback) noexcept
  873. {
  874. #ifndef BUILD_BRIDGE
  875. CARLA_SAFE_ASSERT_RETURN(sendOsc || sendCallback,); // never call this from RT
  876. #endif
  877. CARLA_SAFE_ASSERT_RETURN(channel >= -1 && channel < MAX_MIDI_CHANNELS,);
  878. if (pData->ctrlChannel == channel)
  879. return;
  880. pData->ctrlChannel = channel;
  881. #ifndef BUILD_BRIDGE
  882. const float channelf(channel);
  883. # ifdef HAVE_LIBLO
  884. if (sendOsc && pData->engine->isOscControlRegistered())
  885. pData->engine->oscSend_control_set_parameter_value(pData->id, PARAMETER_CTRL_CHANNEL, channelf);
  886. # endif
  887. if (sendCallback)
  888. pData->engine->callback(ENGINE_CALLBACK_PARAMETER_VALUE_CHANGED, pData->id, PARAMETER_CTRL_CHANNEL, 0, channelf, nullptr);
  889. #endif
  890. // may be unused
  891. return; (void)sendOsc; (void)sendCallback;
  892. }
  893. // -------------------------------------------------------------------
  894. // Set data (plugin-specific stuff)
  895. void CarlaPlugin::setParameterValue(const uint32_t parameterId, const float value, const bool sendGui, const bool sendOsc, const bool sendCallback) noexcept
  896. {
  897. CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count,);
  898. if (sendGui && (pData->hints & PLUGIN_HAS_CUSTOM_UI) != 0)
  899. uiParameterChange(parameterId, value);
  900. #if defined(HAVE_LIBLO) && ! defined(BUILD_BRIDGE)
  901. if (sendOsc && pData->engine->isOscControlRegistered())
  902. pData->engine->oscSend_control_set_parameter_value(pData->id, static_cast<int32_t>(parameterId), value);
  903. #endif
  904. if (sendCallback)
  905. pData->engine->callback(ENGINE_CALLBACK_PARAMETER_VALUE_CHANGED, pData->id, static_cast<int>(parameterId), 0, value, nullptr);
  906. // may be unused
  907. return; (void)sendOsc;
  908. }
  909. void CarlaPlugin::setParameterValueByRealIndex(const int32_t rindex, const float value, const bool sendGui, const bool sendOsc, const bool sendCallback) noexcept
  910. {
  911. #ifndef BUILD_BRIDGE
  912. CARLA_SAFE_ASSERT_RETURN(rindex > PARAMETER_MAX && rindex != PARAMETER_NULL,);
  913. switch (rindex)
  914. {
  915. case PARAMETER_ACTIVE:
  916. return setActive((value > 0.0f), sendOsc, sendCallback);
  917. case PARAMETER_CTRL_CHANNEL:
  918. return setCtrlChannel(int8_t(value), sendOsc, sendCallback);
  919. case PARAMETER_DRYWET:
  920. return setDryWet(value, sendOsc, sendCallback);
  921. case PARAMETER_VOLUME:
  922. return setVolume(value, sendOsc, sendCallback);
  923. case PARAMETER_BALANCE_LEFT:
  924. return setBalanceLeft(value, sendOsc, sendCallback);
  925. case PARAMETER_BALANCE_RIGHT:
  926. return setBalanceRight(value, sendOsc, sendCallback);
  927. case PARAMETER_PANNING:
  928. return setPanning(value, sendOsc, sendCallback);
  929. }
  930. #endif
  931. CARLA_SAFE_ASSERT_RETURN(rindex >= 0,);
  932. for (uint32_t i=0; i < pData->param.count; ++i)
  933. {
  934. if (pData->param.data[i].rindex == rindex)
  935. {
  936. //if (! carla_compareFloats(getParameterValue(i), value))
  937. setParameterValue(i, value, sendGui, sendOsc, sendCallback);
  938. break;
  939. }
  940. }
  941. }
  942. void CarlaPlugin::setParameterMidiChannel(const uint32_t parameterId, const uint8_t channel, const bool sendOsc, const bool sendCallback) noexcept
  943. {
  944. #ifndef BUILD_BRIDGE
  945. CARLA_SAFE_ASSERT_RETURN(sendOsc || sendCallback,); // never call this from RT
  946. #endif
  947. CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count,);
  948. CARLA_SAFE_ASSERT_RETURN(channel < MAX_MIDI_CHANNELS,);
  949. pData->param.data[parameterId].midiChannel = channel;
  950. #ifndef BUILD_BRIDGE
  951. # ifdef HAVE_LIBLO
  952. if (sendOsc && pData->engine->isOscControlRegistered())
  953. pData->engine->oscSend_control_set_parameter_midi_channel(pData->id, parameterId, channel);
  954. # endif
  955. if (sendCallback)
  956. pData->engine->callback(ENGINE_CALLBACK_PARAMETER_MIDI_CHANNEL_CHANGED, pData->id, static_cast<int>(parameterId), channel, 0.0f, nullptr);
  957. #endif
  958. // may be unused
  959. return; (void)sendOsc; (void)sendCallback;
  960. }
  961. void CarlaPlugin::setParameterMidiCC(const uint32_t parameterId, const int16_t cc, const bool sendOsc, const bool sendCallback) noexcept
  962. {
  963. #ifndef BUILD_BRIDGE
  964. CARLA_SAFE_ASSERT_RETURN(sendOsc || sendCallback,); // never call this from RT
  965. #endif
  966. CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count,);
  967. CARLA_SAFE_ASSERT_RETURN(cc >= -1 && cc < MAX_MIDI_CONTROL,);
  968. pData->param.data[parameterId].midiCC = cc;
  969. #ifndef BUILD_BRIDGE
  970. # ifdef HAVE_LIBLO
  971. if (sendOsc && pData->engine->isOscControlRegistered())
  972. pData->engine->oscSend_control_set_parameter_midi_cc(pData->id, parameterId, cc);
  973. # endif
  974. if (sendCallback)
  975. pData->engine->callback(ENGINE_CALLBACK_PARAMETER_MIDI_CC_CHANGED, pData->id, static_cast<int>(parameterId), cc, 0.0f, nullptr);
  976. #endif
  977. // may be unused
  978. return; (void)sendOsc; (void)sendCallback;
  979. }
  980. void CarlaPlugin::setCustomData(const char* const type, const char* const key, const char* const value, const bool)
  981. {
  982. CARLA_SAFE_ASSERT_RETURN(type != nullptr && type[0] != '\0',);
  983. CARLA_SAFE_ASSERT_RETURN(key != nullptr && key[0] != '\0',);
  984. CARLA_SAFE_ASSERT_RETURN(value != nullptr,);
  985. // Ignore some keys
  986. if (std::strcmp(type, CUSTOM_DATA_TYPE_STRING) == 0)
  987. {
  988. if (std::strncmp(key, "OSC:", 4) == 0 || std::strncmp(key, "CarlaAlternateFile", 18) == 0 || std::strcmp(key, "guiVisible") == 0)
  989. return;
  990. }
  991. // Check if we already have this key
  992. for (LinkedList<CustomData>::Itenerator it = pData->custom.begin(); it.valid(); it.next())
  993. {
  994. CustomData& customData(it.getValue(kCustomDataFallbackNC));
  995. CARLA_SAFE_ASSERT_CONTINUE(customData.isValid());
  996. if (std::strcmp(customData.key, key) == 0)
  997. {
  998. if (customData.value != nullptr)
  999. delete[] customData.value;
  1000. customData.value = carla_strdup(value);
  1001. return;
  1002. }
  1003. }
  1004. // Otherwise store it
  1005. CustomData customData;
  1006. customData.type = carla_strdup(type);
  1007. customData.key = carla_strdup(key);
  1008. customData.value = carla_strdup(value);
  1009. pData->custom.append(customData);
  1010. }
  1011. void CarlaPlugin::setChunkData(const void* const data, const std::size_t dataSize)
  1012. {
  1013. CARLA_SAFE_ASSERT_RETURN(data != nullptr,);
  1014. CARLA_SAFE_ASSERT_RETURN(dataSize > 0,);
  1015. CARLA_SAFE_ASSERT(false); // this should never happen
  1016. }
  1017. void CarlaPlugin::setProgram(const int32_t index, const bool sendGui, const bool sendOsc, const bool sendCallback) noexcept
  1018. {
  1019. CARLA_SAFE_ASSERT_RETURN(index >= -1 && index < static_cast<int32_t>(pData->prog.count),);
  1020. pData->prog.current = index;
  1021. #if defined(HAVE_LIBLO) && ! defined(BUILD_BRIDGE)
  1022. const bool reallySendOsc(sendOsc && pData->engine->isOscControlRegistered());
  1023. if (reallySendOsc)
  1024. pData->engine->oscSend_control_set_current_program(pData->id, index);
  1025. #else
  1026. const bool reallySendOsc(false);
  1027. #endif
  1028. if (sendCallback)
  1029. pData->engine->callback(ENGINE_CALLBACK_PROGRAM_CHANGED, pData->id, index, 0, 0.0f, nullptr);
  1030. // Change default parameter values
  1031. if (index >= 0)
  1032. {
  1033. if (sendGui && (pData->hints & PLUGIN_HAS_CUSTOM_UI) != 0)
  1034. uiProgramChange(static_cast<uint32_t>(index));
  1035. if (getType() == PLUGIN_GIG || getType() == PLUGIN_SF2 || getType() == PLUGIN_SFZ)
  1036. return;
  1037. pData->updateParameterValues(this, reallySendOsc, sendCallback, true);
  1038. }
  1039. // may be unused
  1040. return; (void)sendGui; (void)sendOsc;
  1041. }
  1042. void CarlaPlugin::setMidiProgram(const int32_t index, const bool sendGui, const bool sendOsc, const bool sendCallback) noexcept
  1043. {
  1044. CARLA_SAFE_ASSERT_RETURN(index >= -1 && index < static_cast<int32_t>(pData->midiprog.count),);
  1045. pData->midiprog.current = index;
  1046. #if defined(HAVE_LIBLO) && ! defined(BUILD_BRIDGE)
  1047. const bool reallySendOsc(sendOsc && pData->engine->isOscControlRegistered());
  1048. if (reallySendOsc)
  1049. pData->engine->oscSend_control_set_current_midi_program(pData->id, index);
  1050. #else
  1051. const bool reallySendOsc(false);
  1052. #endif
  1053. if (sendCallback)
  1054. pData->engine->callback(ENGINE_CALLBACK_MIDI_PROGRAM_CHANGED, pData->id, index, 0, 0.0f, nullptr);
  1055. if (index >= 0)
  1056. {
  1057. if (sendGui && (pData->hints & PLUGIN_HAS_CUSTOM_UI) != 0)
  1058. uiMidiProgramChange(static_cast<uint32_t>(index));
  1059. if (getType() == PLUGIN_GIG || getType() == PLUGIN_SF2 || getType() == PLUGIN_SFZ)
  1060. return;
  1061. pData->updateParameterValues(this, reallySendOsc, sendCallback, true);
  1062. }
  1063. // may be unused
  1064. return; (void)sendGui; (void)sendOsc;
  1065. }
  1066. void CarlaPlugin::setMidiProgramById(const uint32_t bank, const uint32_t program, const bool sendGui, const bool sendOsc, const bool sendCallback) noexcept
  1067. {
  1068. for (uint32_t i=0; i < pData->midiprog.count; ++i)
  1069. {
  1070. if (pData->midiprog.data[i].bank == bank && pData->midiprog.data[i].program == program)
  1071. return setMidiProgram(static_cast<int32_t>(i), sendGui, sendOsc, sendCallback);
  1072. }
  1073. }
  1074. // -------------------------------------------------------------------
  1075. // Plugin state
  1076. void CarlaPlugin::reloadPrograms(const bool)
  1077. {
  1078. }
  1079. // -------------------------------------------------------------------
  1080. // Plugin processing
  1081. void CarlaPlugin::activate() noexcept
  1082. {
  1083. CARLA_SAFE_ASSERT(! pData->active);
  1084. }
  1085. void CarlaPlugin::deactivate() noexcept
  1086. {
  1087. CARLA_SAFE_ASSERT(pData->active);
  1088. }
  1089. void CarlaPlugin::bufferSizeChanged(const uint32_t)
  1090. {
  1091. }
  1092. void CarlaPlugin::sampleRateChanged(const double)
  1093. {
  1094. }
  1095. void CarlaPlugin::offlineModeChanged(const bool)
  1096. {
  1097. }
  1098. // -------------------------------------------------------------------
  1099. // Misc
  1100. void CarlaPlugin::idle()
  1101. {
  1102. if (! pData->enabled)
  1103. return;
  1104. const bool hasUI(pData->hints & PLUGIN_HAS_CUSTOM_UI);
  1105. const bool needsUiMainThread(pData->hints & PLUGIN_NEEDS_UI_MAIN_THREAD);
  1106. #if defined(HAVE_LIBLO) && ! defined(BUILD_BRIDGE)
  1107. const bool sendOsc(pData->engine->isOscControlRegistered());
  1108. #endif
  1109. const uint32_t latency(getLatencyInFrames());
  1110. if (pData->latency.frames != latency)
  1111. {
  1112. carla_stdout("latency changed to %i", latency);
  1113. const ScopedSingleProcessLocker sspl(this, true);
  1114. pData->client->setLatency(latency);
  1115. pData->latency.recreateBuffers(pData->latency.channels, latency);
  1116. }
  1117. const CarlaMutexLocker sl(pData->postRtEvents.mutex);
  1118. for (RtLinkedList<PluginPostRtEvent>::Itenerator it = pData->postRtEvents.data.begin(); it.valid(); it.next())
  1119. {
  1120. const PluginPostRtEvent& event(it.getValue(kPluginPostRtEventFallback));
  1121. CARLA_SAFE_ASSERT_CONTINUE(event.type != kPluginPostRtEventNull);
  1122. switch (event.type)
  1123. {
  1124. case kPluginPostRtEventNull: {
  1125. } break;
  1126. case kPluginPostRtEventDebug: {
  1127. pData->engine->callback(ENGINE_CALLBACK_DEBUG, pData->id, event.value1, event.value2, event.value3, nullptr);
  1128. } break;
  1129. case kPluginPostRtEventParameterChange: {
  1130. // Update UI
  1131. if (event.value1 >= 0 && hasUI)
  1132. {
  1133. if (needsUiMainThread)
  1134. pData->postUiEvents.append(event);
  1135. else
  1136. uiParameterChange(static_cast<uint32_t>(event.value1), event.value3);
  1137. }
  1138. if (event.value2 != 1)
  1139. {
  1140. #if defined(HAVE_LIBLO) && ! defined(BUILD_BRIDGE)
  1141. // Update OSC control client
  1142. if (sendOsc)
  1143. pData->engine->oscSend_control_set_parameter_value(pData->id, event.value1, event.value3);
  1144. #endif
  1145. // Update Host
  1146. pData->engine->callback(ENGINE_CALLBACK_PARAMETER_VALUE_CHANGED, pData->id, event.value1, 0, event.value3, nullptr);
  1147. }
  1148. } break;
  1149. case kPluginPostRtEventProgramChange: {
  1150. // Update UI
  1151. if (event.value1 >= 0 && hasUI)
  1152. {
  1153. if (needsUiMainThread)
  1154. pData->postUiEvents.append(event);
  1155. else
  1156. uiProgramChange(static_cast<uint32_t>(event.value1));
  1157. }
  1158. // Update param values
  1159. for (uint32_t j=0; j < pData->param.count; ++j)
  1160. {
  1161. const float paramDefault(pData->param.ranges[j].def);
  1162. const float paramValue(getParameterValue(j));
  1163. #if defined(HAVE_LIBLO) && ! defined(BUILD_BRIDGE)
  1164. if (sendOsc)
  1165. {
  1166. pData->engine->oscSend_control_set_parameter_value(pData->id, static_cast<int32_t>(j), paramValue);
  1167. pData->engine->oscSend_control_set_default_value(pData->id, j, paramDefault);
  1168. }
  1169. #endif
  1170. pData->engine->callback(ENGINE_CALLBACK_PARAMETER_VALUE_CHANGED, pData->id, static_cast<int>(j), 0, paramValue, nullptr);
  1171. pData->engine->callback(ENGINE_CALLBACK_PARAMETER_DEFAULT_CHANGED, pData->id, static_cast<int>(j), 0, paramDefault, nullptr);
  1172. }
  1173. #if defined(HAVE_LIBLO) && ! defined(BUILD_BRIDGE)
  1174. // Update OSC control client
  1175. if (sendOsc)
  1176. pData->engine->oscSend_control_set_current_program(pData->id, event.value1);
  1177. #endif
  1178. // Update Host
  1179. pData->engine->callback(ENGINE_CALLBACK_PROGRAM_CHANGED, pData->id, event.value1, 0, 0.0f, nullptr);
  1180. } break;
  1181. case kPluginPostRtEventMidiProgramChange: {
  1182. // Update UI
  1183. if (event.value1 >= 0 && hasUI)
  1184. {
  1185. if (needsUiMainThread)
  1186. pData->postUiEvents.append(event);
  1187. else
  1188. uiMidiProgramChange(static_cast<uint32_t>(event.value1));
  1189. }
  1190. // Update param values
  1191. for (uint32_t j=0; j < pData->param.count; ++j)
  1192. {
  1193. const float paramDefault(pData->param.ranges[j].def);
  1194. const float paramValue(getParameterValue(j));
  1195. #if defined(HAVE_LIBLO) && ! defined(BUILD_BRIDGE)
  1196. if (sendOsc)
  1197. {
  1198. pData->engine->oscSend_control_set_parameter_value(pData->id, static_cast<int32_t>(j), paramValue);
  1199. pData->engine->oscSend_control_set_default_value(pData->id, j, paramDefault);
  1200. }
  1201. #endif
  1202. pData->engine->callback(ENGINE_CALLBACK_PARAMETER_VALUE_CHANGED, pData->id, static_cast<int>(j), 0, paramValue, nullptr);
  1203. pData->engine->callback(ENGINE_CALLBACK_PARAMETER_DEFAULT_CHANGED, pData->id, static_cast<int>(j), 0, paramDefault, nullptr);
  1204. }
  1205. #if defined(HAVE_LIBLO) && ! defined(BUILD_BRIDGE)
  1206. // Update OSC control client
  1207. if (sendOsc)
  1208. pData->engine->oscSend_control_set_current_midi_program(pData->id, event.value1);
  1209. #endif
  1210. // Update Host
  1211. pData->engine->callback(ENGINE_CALLBACK_MIDI_PROGRAM_CHANGED, pData->id, event.value1, 0, 0.0f, nullptr);
  1212. } break;
  1213. case kPluginPostRtEventNoteOn: {
  1214. CARLA_SAFE_ASSERT_BREAK(event.value1 >= 0 && event.value1 < MAX_MIDI_CHANNELS);
  1215. CARLA_SAFE_ASSERT_BREAK(event.value2 >= 0 && event.value2 < MAX_MIDI_NOTE);
  1216. CARLA_SAFE_ASSERT_BREAK(event.value3 >= 0 && event.value3 < MAX_MIDI_VALUE);
  1217. const uint8_t channel = static_cast<uint8_t>(event.value1);
  1218. const uint8_t note = static_cast<uint8_t>(event.value2);
  1219. const uint8_t velocity = uint8_t(event.value3);
  1220. // Update UI
  1221. if (hasUI)
  1222. {
  1223. if (needsUiMainThread)
  1224. pData->postUiEvents.append(event);
  1225. else
  1226. uiNoteOn(channel, note, velocity);
  1227. }
  1228. #if defined(HAVE_LIBLO) && ! defined(BUILD_BRIDGE)
  1229. // Update OSC control client
  1230. if (sendOsc)
  1231. pData->engine->oscSend_control_note_on(pData->id, channel, note, velocity);
  1232. #endif
  1233. // Update Host
  1234. pData->engine->callback(ENGINE_CALLBACK_NOTE_ON, pData->id, event.value1, event.value2, event.value3, nullptr);
  1235. } break;
  1236. case kPluginPostRtEventNoteOff: {
  1237. CARLA_SAFE_ASSERT_BREAK(event.value1 >= 0 && event.value1 < MAX_MIDI_CHANNELS);
  1238. CARLA_SAFE_ASSERT_BREAK(event.value2 >= 0 && event.value2 < MAX_MIDI_NOTE);
  1239. const uint8_t channel = static_cast<uint8_t>(event.value1);
  1240. const uint8_t note = static_cast<uint8_t>(event.value2);
  1241. // Update UI
  1242. if (hasUI)
  1243. {
  1244. if (needsUiMainThread)
  1245. pData->postUiEvents.append(event);
  1246. else
  1247. uiNoteOff(channel, note);
  1248. }
  1249. #if defined(HAVE_LIBLO) && ! defined(BUILD_BRIDGE)
  1250. // Update OSC control client
  1251. if (sendOsc)
  1252. pData->engine->oscSend_control_note_off(pData->id, channel, note);
  1253. #endif
  1254. // Update Host
  1255. pData->engine->callback(ENGINE_CALLBACK_NOTE_OFF, pData->id, event.value1, event.value2, 0.0f, nullptr);
  1256. } break;
  1257. }
  1258. }
  1259. pData->postRtEvents.data.clear();
  1260. }
  1261. bool CarlaPlugin::tryLock(const bool forcedOffline) noexcept
  1262. {
  1263. if (forcedOffline)
  1264. {
  1265. pData->masterMutex.lock();
  1266. return true;
  1267. }
  1268. return pData->masterMutex.tryLock();
  1269. }
  1270. void CarlaPlugin::unlock() noexcept
  1271. {
  1272. pData->masterMutex.unlock();
  1273. }
  1274. // -------------------------------------------------------------------
  1275. // Plugin buffers
  1276. void CarlaPlugin::initBuffers() const noexcept
  1277. {
  1278. pData->audioIn.initBuffers();
  1279. pData->audioOut.initBuffers();
  1280. pData->cvIn.initBuffers();
  1281. pData->cvOut.initBuffers();
  1282. pData->event.initBuffers();
  1283. }
  1284. void CarlaPlugin::clearBuffers() noexcept
  1285. {
  1286. pData->clearBuffers();
  1287. }
  1288. #if defined(HAVE_LIBLO) && ! defined(BUILD_BRIDGE)
  1289. // -------------------------------------------------------------------
  1290. // OSC stuff
  1291. void CarlaPlugin::registerToOscClient() noexcept
  1292. {
  1293. if (! pData->engine->isOscControlRegistered())
  1294. return;
  1295. pData->engine->oscSend_control_add_plugin_start(pData->id, pData->name);
  1296. // Base data
  1297. {
  1298. char bufName[STR_MAX+1], bufLabel[STR_MAX+1], bufMaker[STR_MAX+1], bufCopyright[STR_MAX+1];
  1299. carla_zeroChar(bufName, STR_MAX);
  1300. carla_zeroChar(bufLabel, STR_MAX);
  1301. carla_zeroChar(bufMaker, STR_MAX);
  1302. carla_zeroChar(bufCopyright, STR_MAX);
  1303. getRealName(bufName);
  1304. getLabel(bufLabel);
  1305. getMaker(bufMaker);
  1306. getCopyright(bufCopyright);
  1307. pData->engine->oscSend_control_set_plugin_info1(pData->id, getType(), getCategory(), pData->hints, getUniqueId());
  1308. pData->engine->oscSend_control_set_plugin_info2(pData->id, bufName, bufLabel, bufMaker, bufCopyright);
  1309. }
  1310. // Base count
  1311. {
  1312. uint32_t paramIns, paramOuts;
  1313. getParameterCountInfo(paramIns, paramOuts);
  1314. pData->engine->oscSend_control_set_audio_count(pData->id, getAudioInCount(), getAudioOutCount());
  1315. pData->engine->oscSend_control_set_midi_count(pData->id, getMidiInCount(), getMidiOutCount());
  1316. pData->engine->oscSend_control_set_parameter_count(pData->id, paramIns, paramOuts);
  1317. }
  1318. // Plugin Parameters
  1319. if (const uint32_t count = pData->param.count)
  1320. {
  1321. char bufName[STR_MAX+1], bufUnit[STR_MAX+1];
  1322. for (uint32_t i=0, maxParams=pData->engine->getOptions().maxParameters; i<count && i<maxParams; ++i)
  1323. {
  1324. carla_zeroChar(bufName, STR_MAX);
  1325. carla_zeroChar(bufUnit, STR_MAX);
  1326. getParameterName(i, bufName);
  1327. getParameterUnit(i, bufUnit);
  1328. const ParameterData& paramData(pData->param.data[i]);
  1329. const ParameterRanges& paramRanges(pData->param.ranges[i]);
  1330. pData->engine->oscSend_control_set_parameter_data(pData->id, i, paramData.type, paramData.hints, bufName, bufUnit);
  1331. pData->engine->oscSend_control_set_parameter_ranges1(pData->id, i, paramRanges.def, paramRanges.min, paramRanges.max);
  1332. pData->engine->oscSend_control_set_parameter_ranges2(pData->id, i, paramRanges.step, paramRanges.stepSmall, paramRanges.stepLarge);
  1333. pData->engine->oscSend_control_set_parameter_value(pData->id, static_cast<int32_t>(i), getParameterValue(i));
  1334. pData->engine->oscSend_control_set_parameter_midi_cc(pData->id, i, paramData.midiCC);
  1335. pData->engine->oscSend_control_set_parameter_midi_channel(pData->id, i, paramData.midiChannel);
  1336. }
  1337. }
  1338. // Programs
  1339. if (const uint32_t count = pData->prog.count)
  1340. {
  1341. pData->engine->oscSend_control_set_program_count(pData->id, count);
  1342. for (uint32_t i=0; i < count; ++i)
  1343. pData->engine->oscSend_control_set_program_name(pData->id, i, pData->prog.names[i]);
  1344. pData->engine->oscSend_control_set_current_program(pData->id, pData->prog.current);
  1345. }
  1346. // MIDI Programs
  1347. if (const uint32_t count = pData->midiprog.count)
  1348. {
  1349. pData->engine->oscSend_control_set_midi_program_count(pData->id, count);
  1350. for (uint32_t i=0; i < count; ++i)
  1351. {
  1352. const MidiProgramData& mpData(pData->midiprog.data[i]);
  1353. pData->engine->oscSend_control_set_midi_program_data(pData->id, i, mpData.bank, mpData.program, mpData.name);
  1354. }
  1355. pData->engine->oscSend_control_set_current_midi_program(pData->id, pData->midiprog.current);
  1356. }
  1357. pData->engine->oscSend_control_add_plugin_end(pData->id);
  1358. // Internal Parameters
  1359. {
  1360. pData->engine->oscSend_control_set_parameter_value(pData->id, PARAMETER_DRYWET, pData->postProc.dryWet);
  1361. pData->engine->oscSend_control_set_parameter_value(pData->id, PARAMETER_VOLUME, pData->postProc.volume);
  1362. pData->engine->oscSend_control_set_parameter_value(pData->id, PARAMETER_BALANCE_LEFT, pData->postProc.balanceLeft);
  1363. pData->engine->oscSend_control_set_parameter_value(pData->id, PARAMETER_BALANCE_RIGHT, pData->postProc.balanceRight);
  1364. pData->engine->oscSend_control_set_parameter_value(pData->id, PARAMETER_PANNING, pData->postProc.panning);
  1365. pData->engine->oscSend_control_set_parameter_value(pData->id, PARAMETER_CTRL_CHANNEL, pData->ctrlChannel);
  1366. pData->engine->oscSend_control_set_parameter_value(pData->id, PARAMETER_ACTIVE, pData->active ? 1.0f : 0.0f);
  1367. }
  1368. }
  1369. #endif
  1370. // FIXME
  1371. void CarlaPlugin::handleOscMessage(const char* const, const int, const void* const, const char* const, const lo_message)
  1372. {
  1373. // do nothing
  1374. }
  1375. //#endif // HAVE_LIBLO && ! BUILD_BRIDGE
  1376. // -------------------------------------------------------------------
  1377. // MIDI events
  1378. void CarlaPlugin::sendMidiSingleNote(const uint8_t channel, const uint8_t note, const uint8_t velo, const bool sendGui, const bool sendOsc, const bool sendCallback)
  1379. {
  1380. CARLA_SAFE_ASSERT_RETURN(channel < MAX_MIDI_CHANNELS,);
  1381. CARLA_SAFE_ASSERT_RETURN(note < MAX_MIDI_NOTE,);
  1382. CARLA_SAFE_ASSERT_RETURN(velo < MAX_MIDI_VALUE,);
  1383. if (! pData->active)
  1384. return;
  1385. ExternalMidiNote extNote;
  1386. extNote.channel = static_cast<int8_t>(channel);
  1387. extNote.note = note;
  1388. extNote.velo = velo;
  1389. pData->extNotes.appendNonRT(extNote);
  1390. if (sendGui && (pData->hints & PLUGIN_HAS_CUSTOM_UI) != 0)
  1391. {
  1392. if (velo > 0)
  1393. uiNoteOn(channel, note, velo);
  1394. else
  1395. uiNoteOff(channel, note);
  1396. }
  1397. #if defined(HAVE_LIBLO) && ! defined(BUILD_BRIDGE)
  1398. if (sendOsc && pData->engine->isOscControlRegistered())
  1399. {
  1400. if (velo > 0)
  1401. pData->engine->oscSend_control_note_on(pData->id, channel, note, velo);
  1402. else
  1403. pData->engine->oscSend_control_note_off(pData->id, channel, note);
  1404. }
  1405. #endif
  1406. if (sendCallback)
  1407. pData->engine->callback((velo > 0) ? ENGINE_CALLBACK_NOTE_ON : ENGINE_CALLBACK_NOTE_OFF, pData->id, channel, note, velo, nullptr);
  1408. // may be unused
  1409. return; (void)sendOsc;
  1410. }
  1411. #ifndef BUILD_BRIDGE
  1412. void CarlaPlugin::sendMidiAllNotesOffToCallback()
  1413. {
  1414. if (pData->ctrlChannel < 0 || pData->ctrlChannel >= MAX_MIDI_CHANNELS)
  1415. return;
  1416. PluginPostRtEvent postEvent;
  1417. postEvent.type = kPluginPostRtEventNoteOff;
  1418. postEvent.value1 = pData->ctrlChannel;
  1419. postEvent.value2 = 0;
  1420. postEvent.value3 = 0.0f;
  1421. for (int32_t i=0; i < MAX_MIDI_NOTE; ++i)
  1422. {
  1423. postEvent.value2 = i;
  1424. pData->postRtEvents.appendRT(postEvent);
  1425. }
  1426. }
  1427. #endif
  1428. // -------------------------------------------------------------------
  1429. // UI Stuff
  1430. void CarlaPlugin::showCustomUI(const bool)
  1431. {
  1432. CARLA_SAFE_ASSERT(false);
  1433. }
  1434. void CarlaPlugin::uiIdle()
  1435. {
  1436. if (pData->hints & PLUGIN_NEEDS_UI_MAIN_THREAD)
  1437. {
  1438. // Update parameter outputs
  1439. for (uint32_t i=0; i < pData->param.count; ++i)
  1440. {
  1441. if (pData->param.data[i].type == PARAMETER_OUTPUT)
  1442. uiParameterChange(i, getParameterValue(i));
  1443. }
  1444. const CarlaMutexLocker sl(pData->postUiEvents.mutex);
  1445. for (LinkedList<PluginPostRtEvent>::Itenerator it = pData->postUiEvents.data.begin(); it.valid(); it.next())
  1446. {
  1447. const PluginPostRtEvent& event(it.getValue(kPluginPostRtEventFallback));
  1448. CARLA_SAFE_ASSERT_CONTINUE(event.type != kPluginPostRtEventNull);
  1449. switch (event.type)
  1450. {
  1451. case kPluginPostRtEventNull:
  1452. case kPluginPostRtEventDebug:
  1453. break;
  1454. case kPluginPostRtEventParameterChange:
  1455. uiParameterChange(static_cast<uint32_t>(event.value1), event.value3);
  1456. break;
  1457. case kPluginPostRtEventProgramChange:
  1458. uiProgramChange(static_cast<uint32_t>(event.value1));
  1459. break;
  1460. case kPluginPostRtEventMidiProgramChange:
  1461. uiMidiProgramChange(static_cast<uint32_t>(event.value1));
  1462. break;
  1463. case kPluginPostRtEventNoteOn:
  1464. uiNoteOn(static_cast<uint8_t>(event.value1), static_cast<uint8_t>(event.value2), uint8_t(event.value3));
  1465. break;
  1466. case kPluginPostRtEventNoteOff:
  1467. uiNoteOff(static_cast<uint8_t>(event.value1), static_cast<uint8_t>(event.value2));
  1468. break;
  1469. }
  1470. }
  1471. pData->postUiEvents.data.clear();
  1472. }
  1473. if (pData->transientTryCounter == 0)
  1474. return;
  1475. if (++pData->transientTryCounter % 10 != 0)
  1476. return;
  1477. if (pData->transientTryCounter >= 200)
  1478. return;
  1479. carla_stdout("Trying to get window...");
  1480. CarlaString uiTitle(pData->name);
  1481. uiTitle += " (GUI)";
  1482. if (CarlaPluginUI::tryTransientWinIdMatch(getUiBridgeProcessId(), uiTitle, pData->engine->getOptions().frontendWinId, true))
  1483. pData->transientTryCounter = 0;
  1484. }
  1485. void CarlaPlugin::uiParameterChange(const uint32_t index, const float value) noexcept
  1486. {
  1487. CARLA_SAFE_ASSERT_RETURN(index < getParameterCount(),);
  1488. return;
  1489. // unused
  1490. (void)value;
  1491. }
  1492. void CarlaPlugin::uiProgramChange(const uint32_t index) noexcept
  1493. {
  1494. CARLA_SAFE_ASSERT_RETURN(index < getProgramCount(),);
  1495. }
  1496. void CarlaPlugin::uiMidiProgramChange(const uint32_t index) noexcept
  1497. {
  1498. CARLA_SAFE_ASSERT_RETURN(index < getMidiProgramCount(),);
  1499. }
  1500. void CarlaPlugin::uiNoteOn(const uint8_t channel, const uint8_t note, const uint8_t velo) noexcept
  1501. {
  1502. CARLA_SAFE_ASSERT_RETURN(channel < MAX_MIDI_CHANNELS,);
  1503. CARLA_SAFE_ASSERT_RETURN(note < MAX_MIDI_NOTE,);
  1504. CARLA_SAFE_ASSERT_RETURN(velo > 0 && velo < MAX_MIDI_VALUE,);
  1505. }
  1506. void CarlaPlugin::uiNoteOff(const uint8_t channel, const uint8_t note) noexcept
  1507. {
  1508. CARLA_SAFE_ASSERT_RETURN(channel < MAX_MIDI_CHANNELS,);
  1509. CARLA_SAFE_ASSERT_RETURN(note < MAX_MIDI_NOTE,);
  1510. }
  1511. bool CarlaPlugin::canRunInRack() const noexcept
  1512. {
  1513. return (pData->extraHints & PLUGIN_EXTRA_HINT_CAN_RUN_RACK) != 0;
  1514. }
  1515. CarlaEngine* CarlaPlugin::getEngine() const noexcept
  1516. {
  1517. return pData->engine;
  1518. }
  1519. CarlaEngineClient* CarlaPlugin::getEngineClient() const noexcept
  1520. {
  1521. return pData->client;
  1522. }
  1523. CarlaEngineAudioPort* CarlaPlugin::getAudioInPort(const uint32_t index) const noexcept
  1524. {
  1525. return pData->audioIn.ports[index].port;
  1526. }
  1527. CarlaEngineAudioPort* CarlaPlugin::getAudioOutPort(const uint32_t index) const noexcept
  1528. {
  1529. return pData->audioOut.ports[index].port;
  1530. }
  1531. CarlaEngineCVPort* CarlaPlugin::getCVInPort(const uint32_t index) const noexcept
  1532. {
  1533. return pData->cvIn.ports[index].port;
  1534. }
  1535. CarlaEngineCVPort* CarlaPlugin::getCVOutPort(const uint32_t index) const noexcept
  1536. {
  1537. return pData->cvOut.ports[index].port;
  1538. }
  1539. CarlaEngineEventPort* CarlaPlugin::getDefaultEventInPort() const noexcept
  1540. {
  1541. return pData->event.portIn;
  1542. }
  1543. CarlaEngineEventPort* CarlaPlugin::getDefaultEventOutPort() const noexcept
  1544. {
  1545. return pData->event.portOut;
  1546. }
  1547. void* CarlaPlugin::getNativeHandle() const noexcept
  1548. {
  1549. return nullptr;
  1550. }
  1551. const void* CarlaPlugin::getNativeDescriptor() const noexcept
  1552. {
  1553. return nullptr;
  1554. }
  1555. uintptr_t CarlaPlugin::getUiBridgeProcessId() const noexcept
  1556. {
  1557. return 0;
  1558. }
  1559. // -------------------------------------------------------------------
  1560. uint32_t CarlaPlugin::getPatchbayNodeId() const noexcept
  1561. {
  1562. return pData->nodeId;
  1563. }
  1564. void CarlaPlugin::setPatchbayNodeId(const uint32_t nodeId) noexcept
  1565. {
  1566. pData->nodeId = nodeId;
  1567. }
  1568. // -------------------------------------------------------------------
  1569. // Scoped Disabler
  1570. CarlaPlugin::ScopedDisabler::ScopedDisabler(CarlaPlugin* const plugin) noexcept
  1571. : fPlugin(plugin)
  1572. {
  1573. CARLA_SAFE_ASSERT_RETURN(plugin != nullptr,);
  1574. CARLA_SAFE_ASSERT_RETURN(plugin->pData != nullptr,);
  1575. CARLA_SAFE_ASSERT_RETURN(plugin->pData->client != nullptr,);
  1576. carla_debug("CarlaPlugin::ScopedDisabler(%p)", plugin);
  1577. plugin->pData->masterMutex.lock();
  1578. if (plugin->pData->enabled)
  1579. plugin->pData->enabled = false;
  1580. if (plugin->pData->client->isActive())
  1581. plugin->pData->client->deactivate();
  1582. }
  1583. CarlaPlugin::ScopedDisabler::~ScopedDisabler() noexcept
  1584. {
  1585. CARLA_SAFE_ASSERT_RETURN(fPlugin != nullptr,);
  1586. CARLA_SAFE_ASSERT_RETURN(fPlugin->pData != nullptr,);
  1587. CARLA_SAFE_ASSERT_RETURN(fPlugin->pData->client != nullptr,);
  1588. carla_debug("CarlaPlugin::~ScopedDisabler()");
  1589. fPlugin->pData->enabled = true;
  1590. fPlugin->pData->client->activate();
  1591. fPlugin->pData->masterMutex.unlock();
  1592. }
  1593. // -------------------------------------------------------------------
  1594. // Scoped Process Locker
  1595. CarlaPlugin::ScopedSingleProcessLocker::ScopedSingleProcessLocker(CarlaPlugin* const plugin, const bool block) noexcept
  1596. : fPlugin(plugin),
  1597. fBlock(block)
  1598. {
  1599. CARLA_SAFE_ASSERT_RETURN(fPlugin != nullptr,);
  1600. CARLA_SAFE_ASSERT_RETURN(fPlugin->pData != nullptr,);
  1601. carla_debug("CarlaPlugin::ScopedSingleProcessLocker(%p, %s)", plugin, bool2str(block));
  1602. if (! fBlock)
  1603. return;
  1604. plugin->pData->singleMutex.lock();
  1605. }
  1606. CarlaPlugin::ScopedSingleProcessLocker::~ScopedSingleProcessLocker() noexcept
  1607. {
  1608. CARLA_SAFE_ASSERT_RETURN(fPlugin != nullptr,);
  1609. CARLA_SAFE_ASSERT_RETURN(fPlugin->pData != nullptr,);
  1610. carla_debug("CarlaPlugin::~ScopedSingleProcessLocker()");
  1611. if (! fBlock)
  1612. return;
  1613. #ifndef BUILD_BRIDGE
  1614. if (fPlugin->pData->singleMutex.wasTryLockCalled())
  1615. fPlugin->pData->needsReset = true;
  1616. #endif
  1617. fPlugin->pData->singleMutex.unlock();
  1618. }
  1619. // -------------------------------------------------------------------
  1620. CARLA_BACKEND_END_NAMESPACE