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.

1341 lines
43KB

  1. /*
  2. * Carla Native Plugins
  3. * Copyright (C) 2013-2020 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. #ifdef __WINE__
  18. #error This file is not supposed to be built with wine!
  19. #endif
  20. #ifndef CARLA_PLUGIN_SYNTH
  21. #error CARLA_PLUGIN_SYNTH undefined
  22. #endif
  23. #ifndef CARLA_VST_SHELL
  24. #ifndef CARLA_PLUGIN_PATCHBAY
  25. #error CARLA_PLUGIN_PATCHBAY undefined
  26. #endif
  27. #if defined(CARLA_PLUGIN_64CH) || defined(CARLA_PLUGIN_32CH) || defined(CARLA_PLUGIN_16CH)
  28. #if ! CARLA_PLUGIN_SYNTH
  29. #error CARLA_PLUGIN_16/32/64CH requires CARLA_PLUGIN_SYNTH
  30. #endif
  31. #endif
  32. #endif
  33. #define CARLA_NATIVE_PLUGIN_VST
  34. #include "carla-base.cpp"
  35. #include "carla-vst.hpp"
  36. #include "water/files/File.h"
  37. #include "CarlaMathUtils.hpp"
  38. #include "CarlaVstUtils.hpp"
  39. static uint32_t d_lastBufferSize = 0;
  40. static double d_lastSampleRate = 0.0;
  41. static const int32_t kBaseUniqueID = CCONST('C', 'r', 'l', 'a');
  42. static const int32_t kVstMidiEventSize = static_cast<int32_t>(sizeof(VstMidiEvent));
  43. #ifdef CARLA_VST_SHELL
  44. # if CARLA_PLUGIN_SYNTH
  45. static const int32_t kShellUniqueID = CCONST('C', 'r', 'l', 's');
  46. # else
  47. static const int32_t kShellUniqueID = CCONST('C', 'r', 'l', 'F');
  48. # endif
  49. #else
  50. static const int32_t kNumParameters = 100;
  51. #endif
  52. static const bool kIsUsingUILauncher = isUsingUILauncher();
  53. // --------------------------------------------------------------------------------------------------------------------
  54. // Carla Internal Plugin API exposed as VST plugin
  55. class NativePlugin
  56. {
  57. public:
  58. static const uint32_t kMaxMidiEvents = 512;
  59. NativePlugin(AEffect* const effect, const NativePluginDescriptor* desc)
  60. : fEffect(effect),
  61. fHandle(nullptr),
  62. fHost(),
  63. fDescriptor(desc),
  64. fBufferSize(d_lastBufferSize),
  65. fSampleRate(d_lastSampleRate),
  66. fIsActive(false),
  67. fMidiEventCount(0),
  68. fTimeInfo(),
  69. fVstRect(),
  70. fUiLauncher(nullptr),
  71. fHostType(kHostTypeNull),
  72. fMidiOutEvents(),
  73. fStateChunk(nullptr)
  74. {
  75. fHost.handle = this;
  76. fHost.uiName = carla_strdup("CarlaVST");
  77. fHost.uiParentId = 0;
  78. std::memset(fProgramName, 0, sizeof(fProgramName));
  79. std::strcpy(fProgramName, "Default");
  80. // find resource dir
  81. using water::File;
  82. using water::String;
  83. File curExe = File::getSpecialLocation(File::currentExecutableFile).getLinkedTarget();
  84. File resDir = curExe.getSiblingFile("resources");
  85. #ifndef CARLA_OS_MAC
  86. // FIXME: proper fallback path for other OSes
  87. if (! resDir.exists())
  88. resDir = File("/usr/local/share/carla/resources");
  89. if (! resDir.exists())
  90. resDir = File("/usr/share/carla/resources");
  91. #endif
  92. // find host type
  93. const String hostFilename(File::getSpecialLocation(File::hostApplicationPath).getFileName());
  94. /**/ if (hostFilename.startsWith("ardour"))
  95. fHostType = kHostTypeArdour;
  96. else if (hostFilename.startsWith("Bitwig"))
  97. fHostType = kHostTypeBitwig;
  98. fHost.resourceDir = carla_strdup(resDir.getFullPathName().toRawUTF8());
  99. fHost.get_buffer_size = host_get_buffer_size;
  100. fHost.get_sample_rate = host_get_sample_rate;
  101. fHost.is_offline = host_is_offline;
  102. fHost.get_time_info = host_get_time_info;
  103. fHost.write_midi_event = host_write_midi_event;
  104. fHost.ui_parameter_changed = host_ui_parameter_changed;
  105. fHost.ui_custom_data_changed = host_ui_custom_data_changed;
  106. fHost.ui_closed = host_ui_closed;
  107. fHost.ui_open_file = host_ui_open_file;
  108. fHost.ui_save_file = host_ui_save_file;
  109. fHost.dispatcher = host_dispatcher;
  110. fVstRect.top = 0;
  111. fVstRect.left = 0;
  112. if (kIsUsingUILauncher || (fDescriptor->hints & NATIVE_PLUGIN_USES_UI_SIZE) == 0x0)
  113. {
  114. fVstRect.right = ui_launcher_res::carla_uiWidth;
  115. fVstRect.bottom = ui_launcher_res::carla_uiHeight;
  116. }
  117. else
  118. {
  119. fVstRect.right = static_cast<int16_t>(fDescriptor->ui_width);
  120. fVstRect.bottom = static_cast<int16_t>(fDescriptor->ui_height);
  121. }
  122. init();
  123. }
  124. ~NativePlugin()
  125. {
  126. if (fIsActive)
  127. {
  128. // host has not de-activated the plugin yet, nasty!
  129. fIsActive = false;
  130. if (fDescriptor->deactivate != nullptr)
  131. fDescriptor->deactivate(fHandle);
  132. }
  133. if (fDescriptor->cleanup != nullptr && fHandle != nullptr)
  134. fDescriptor->cleanup(fHandle);
  135. fHandle = nullptr;
  136. if (fStateChunk != nullptr)
  137. {
  138. std::free(fStateChunk);
  139. fStateChunk = nullptr;
  140. }
  141. if (fHost.uiName != nullptr)
  142. {
  143. delete[] fHost.uiName;
  144. fHost.uiName = nullptr;
  145. }
  146. if (fHost.resourceDir != nullptr)
  147. {
  148. delete[] fHost.resourceDir;
  149. fHost.resourceDir = nullptr;
  150. }
  151. }
  152. bool init()
  153. {
  154. if (fDescriptor->instantiate == nullptr || fDescriptor->process == nullptr)
  155. {
  156. carla_stderr("Plugin is missing something...");
  157. return false;
  158. }
  159. fHandle = fDescriptor->instantiate(&fHost);
  160. CARLA_SAFE_ASSERT_RETURN(fHandle != nullptr, false);
  161. carla_zeroStructs(fMidiEvents, kMaxMidiEvents);
  162. carla_zeroStruct(fTimeInfo);
  163. return true;
  164. }
  165. const NativePluginDescriptor* getDescriptor() const noexcept
  166. {
  167. return fDescriptor;
  168. }
  169. // -------------------------------------------------------------------
  170. intptr_t vst_dispatcher(const int32_t opcode,
  171. const int32_t index, const intptr_t value, void* const ptr, const float opt)
  172. {
  173. CARLA_SAFE_ASSERT_RETURN(fHandle != nullptr, 0);
  174. intptr_t ret = 0;
  175. switch (opcode)
  176. {
  177. case effGetProgram:
  178. return 0;
  179. case effSetProgramName:
  180. if (char* const programName = (char*)ptr)
  181. {
  182. std::strncpy(fProgramName, programName, 32);
  183. return 1;
  184. }
  185. break;
  186. case effGetProgramName:
  187. if (char* const programName = (char*)ptr)
  188. {
  189. std::strncpy(programName, fProgramName, 23);
  190. programName[23] = '\0';
  191. return 1;
  192. }
  193. break;
  194. case effGetProgramNameIndexed:
  195. if (char* const programName = (char*)ptr)
  196. {
  197. std::strncpy(programName, fProgramName, 23);
  198. programName[23] = '\0';
  199. return 1;
  200. }
  201. break;
  202. case effGetParamDisplay:
  203. CARLA_SAFE_ASSERT_RETURN(index >= 0, 0);
  204. #ifndef CARLA_VST_SHELL
  205. CARLA_SAFE_ASSERT_RETURN(index < kNumParameters, 0);
  206. #endif
  207. if (char* const cptr = (char*)ptr)
  208. {
  209. const uint32_t uindex = static_cast<uint32_t>(index);
  210. CARLA_SAFE_ASSERT_RETURN(uindex < fDescriptor->paramIns, 0);
  211. const NativeParameter* const param = fDescriptor->get_parameter_info(fHandle, uindex);
  212. CARLA_SAFE_ASSERT_RETURN(param != nullptr, 0);
  213. float paramValue = fDescriptor->get_parameter_value(fHandle, uindex);
  214. if (param->hints & NATIVE_PARAMETER_IS_BOOLEAN)
  215. {
  216. const NativeParameterRanges& ranges(param->ranges);
  217. const float midRange = ranges.min + (ranges.max - ranges.min) / 2.0f;
  218. paramValue = paramValue > midRange ? ranges.max : ranges.min;
  219. }
  220. else if (param->hints & NATIVE_PARAMETER_IS_INTEGER)
  221. {
  222. paramValue = std::round(paramValue);
  223. }
  224. for (uint32_t i = 0; i < param->scalePointCount; ++i)
  225. {
  226. const NativeParameterScalePoint& scalePoint(param->scalePoints[uindex]);
  227. if (carla_isNotEqual(paramValue, scalePoint.value))
  228. continue;
  229. std::strncpy(cptr, scalePoint.label, 23);
  230. cptr[23] = '\0';
  231. return 1;
  232. }
  233. if (param->hints & NATIVE_PARAMETER_IS_INTEGER)
  234. {
  235. std::snprintf(cptr, 23, "%d%s%s",
  236. static_cast<int>(paramValue),
  237. param->unit != nullptr && param->unit[0] != '\0' ? " " : "",
  238. param->unit != nullptr && param->unit[0] != '\0' ? param->unit : "");
  239. cptr[23] = '\0';
  240. }
  241. else
  242. {
  243. std::snprintf(cptr, 23, "%.12g%s%s",
  244. static_cast<double>(paramValue),
  245. param->unit != nullptr && param->unit[0] != '\0' ? " " : "",
  246. param->unit != nullptr && param->unit[0] != '\0' ? param->unit : "");
  247. cptr[23] = '\0';
  248. }
  249. return 1;
  250. }
  251. break;
  252. case effGetParamName:
  253. CARLA_SAFE_ASSERT_RETURN(index >= 0, 0);
  254. #ifndef CARLA_VST_SHELL
  255. CARLA_SAFE_ASSERT_RETURN(index < kNumParameters, 0);
  256. #endif
  257. if (char* const cptr = (char*)ptr)
  258. {
  259. const uint32_t uindex = static_cast<uint32_t>(index);
  260. CARLA_SAFE_ASSERT_RETURN(uindex < fDescriptor->paramIns, 0);
  261. const NativeParameter* const param = fDescriptor->get_parameter_info(fHandle, uindex);
  262. CARLA_SAFE_ASSERT_RETURN(param != nullptr, 0);
  263. std::strncpy(cptr, param->name, 15);
  264. cptr[15] = '\0';
  265. return 1;
  266. }
  267. return 0;
  268. case effSetSampleRate:
  269. CARLA_SAFE_ASSERT_RETURN(opt > 0.0f, 0);
  270. if (carla_isEqual(fSampleRate, static_cast<double>(opt)))
  271. return 0;
  272. fSampleRate = opt;
  273. if (fDescriptor->dispatcher != nullptr)
  274. fDescriptor->dispatcher(fHandle, NATIVE_PLUGIN_OPCODE_SAMPLE_RATE_CHANGED, 0, 0, nullptr, opt);
  275. break;
  276. case effSetBlockSize:
  277. CARLA_SAFE_ASSERT_RETURN(value > 0, 0);
  278. if (fBufferSize == static_cast<uint32_t>(value))
  279. return 0;
  280. fBufferSize = static_cast<uint32_t>(value);
  281. if (fDescriptor->dispatcher != nullptr)
  282. fDescriptor->dispatcher(fHandle, NATIVE_PLUGIN_OPCODE_BUFFER_SIZE_CHANGED, 0, value, nullptr, 0.0f);
  283. break;
  284. case effMainsChanged:
  285. if (value != 0)
  286. {
  287. fMidiEventCount = 0;
  288. carla_zeroStruct(fTimeInfo);
  289. // tell host we want MIDI events
  290. if (fDescriptor->midiIns > 0)
  291. hostCallback(audioMasterWantMidi);
  292. // deactivate for possible changes
  293. if (fDescriptor->deactivate != nullptr && fIsActive)
  294. fDescriptor->deactivate(fHandle);
  295. // check if something changed
  296. const uint32_t bufferSize = static_cast<uint32_t>(hostCallback(audioMasterGetBlockSize));
  297. const double sampleRate = static_cast<double>(hostCallback(audioMasterGetSampleRate));
  298. if (bufferSize != 0 && fBufferSize != bufferSize && (fHostType != kHostTypeArdour || fBufferSize == 0))
  299. {
  300. fBufferSize = bufferSize;
  301. if (fDescriptor->dispatcher != nullptr)
  302. fDescriptor->dispatcher(fHandle, NATIVE_PLUGIN_OPCODE_BUFFER_SIZE_CHANGED, 0, bufferSize, nullptr, 0.0f);
  303. }
  304. if (carla_isNotZero(sampleRate) && carla_isNotEqual(fSampleRate, sampleRate))
  305. {
  306. fSampleRate = sampleRate;
  307. if (fDescriptor->dispatcher != nullptr)
  308. fDescriptor->dispatcher(fHandle, NATIVE_PLUGIN_OPCODE_SAMPLE_RATE_CHANGED, 0, 0, nullptr, (float)sampleRate);
  309. }
  310. if (fDescriptor->activate != nullptr)
  311. fDescriptor->activate(fHandle);
  312. fIsActive = true;
  313. }
  314. else
  315. {
  316. CARLA_SAFE_ASSERT_BREAK(fIsActive);
  317. if (fDescriptor->deactivate != nullptr)
  318. fDescriptor->deactivate(fHandle);
  319. fIsActive = false;
  320. }
  321. break;
  322. case effEditGetRect:
  323. *(ERect**)ptr = &fVstRect;
  324. ret = 1;
  325. break;
  326. case effEditOpen:
  327. if (fDescriptor->ui_show != nullptr)
  328. {
  329. if (kIsUsingUILauncher)
  330. {
  331. destoryUILauncher(fUiLauncher);
  332. fUiLauncher = createUILauncher((intptr_t)ptr, fDescriptor, fHandle);
  333. }
  334. else
  335. {
  336. char strBuf[0xff+1];
  337. std::snprintf(strBuf, 0xff, P_INTPTR, (intptr_t)ptr);
  338. strBuf[0xff] = '\0';
  339. // set CARLA_PLUGIN_EMBED_WINID for external process
  340. carla_setenv("CARLA_PLUGIN_EMBED_WINID", strBuf);
  341. // show UI now
  342. fDescriptor->ui_show(fHandle, true);
  343. // reset CARLA_PLUGIN_EMBED_WINID just in case
  344. carla_setenv("CARLA_PLUGIN_EMBED_WINID", "0");
  345. }
  346. ret = 1;
  347. }
  348. break;
  349. case effEditClose:
  350. if (fDescriptor->ui_show != nullptr)
  351. {
  352. if (kIsUsingUILauncher)
  353. {
  354. destoryUILauncher(fUiLauncher);
  355. fUiLauncher = nullptr;
  356. }
  357. else
  358. {
  359. fDescriptor->ui_show(fHandle, false);
  360. }
  361. ret = 1;
  362. }
  363. break;
  364. case effEditIdle:
  365. if (fUiLauncher != nullptr)
  366. idleUILauncher(fUiLauncher);
  367. if (fDescriptor->ui_idle != nullptr)
  368. fDescriptor->ui_idle(fHandle);
  369. break;
  370. case effGetChunk:
  371. if (ptr == nullptr || fDescriptor->get_state == nullptr)
  372. return 0;
  373. if (fStateChunk != nullptr)
  374. std::free(fStateChunk);
  375. fStateChunk = fDescriptor->get_state(fHandle);
  376. if (fStateChunk == nullptr)
  377. return 0;
  378. ret = static_cast<intptr_t>(std::strlen(fStateChunk)+1);
  379. *(void**)ptr = fStateChunk;
  380. break;
  381. case effSetChunk:
  382. if (value <= 0 || fDescriptor->set_state == nullptr)
  383. return 0;
  384. if (value == 1)
  385. return 1;
  386. if (const char* const state = (const char*)ptr)
  387. {
  388. fDescriptor->set_state(fHandle, state);
  389. ret = 1;
  390. }
  391. break;
  392. case effProcessEvents:
  393. if (! fIsActive)
  394. {
  395. // host has not activated the plugin yet, nasty!
  396. vst_dispatcher(effMainsChanged, 0, 1, nullptr, 0.0f);
  397. }
  398. if (const VstEvents* const events = (const VstEvents*)ptr)
  399. {
  400. if (events->numEvents == 0)
  401. break;
  402. for (int i=0, count=events->numEvents; i < count; ++i)
  403. {
  404. const VstMidiEvent* const vstMidiEvent((const VstMidiEvent*)events->events[i]);
  405. if (vstMidiEvent == nullptr)
  406. break;
  407. if (vstMidiEvent->type != kVstMidiType || vstMidiEvent->deltaFrames < 0)
  408. continue;
  409. if (fMidiEventCount >= kMaxMidiEvents)
  410. break;
  411. const uint32_t j(fMidiEventCount++);
  412. fMidiEvents[j].port = 0;
  413. fMidiEvents[j].time = static_cast<uint32_t>(vstMidiEvent->deltaFrames);
  414. fMidiEvents[j].size = 3;
  415. for (uint32_t k=0; k<3; ++k)
  416. fMidiEvents[j].data[k] = static_cast<uint8_t>(vstMidiEvent->midiData[k]);
  417. }
  418. }
  419. break;
  420. case effCanBeAutomated:
  421. ret = 1;
  422. break;
  423. case effCanDo:
  424. if (const char* const canDo = (const char*)ptr)
  425. {
  426. if (std::strcmp(canDo, "receiveVstEvents") == 0 || std::strcmp(canDo, "receiveVstMidiEvent") == 0)
  427. {
  428. if (fDescriptor->midiIns == 0)
  429. return -1;
  430. return 1;
  431. }
  432. if (std::strcmp(canDo, "sendVstEvents") == 0 || std::strcmp(canDo, "sendVstMidiEvent") == 0)
  433. {
  434. if (fDescriptor->midiOuts == 0)
  435. return -1;
  436. return 1;
  437. }
  438. if (std::strcmp(canDo, "receiveVstTimeInfo") == 0)
  439. return 1;
  440. }
  441. break;
  442. }
  443. return ret;
  444. }
  445. float vst_getParameter(const int32_t index)
  446. {
  447. CARLA_SAFE_ASSERT_RETURN(index >= 0, 0.0f);
  448. const uint32_t uindex = static_cast<uint32_t>(index);
  449. CARLA_SAFE_ASSERT_RETURN(uindex < fDescriptor->paramIns, 0.0f);
  450. const NativeParameter* const param = fDescriptor->get_parameter_info(fHandle, uindex);
  451. CARLA_SAFE_ASSERT_RETURN(param != nullptr, 0);
  452. const float realValue = fDescriptor->get_parameter_value(fHandle, uindex);
  453. return (realValue - param->ranges.min) / (param->ranges.max - param->ranges.min);
  454. }
  455. void vst_setParameter(const int32_t index, const float value)
  456. {
  457. CARLA_SAFE_ASSERT_RETURN(index >= 0,);
  458. const uint32_t uindex = static_cast<uint32_t>(index);
  459. CARLA_SAFE_ASSERT_RETURN(uindex < fDescriptor->paramIns,);
  460. const NativeParameter* const param = fDescriptor->get_parameter_info(fHandle, uindex);
  461. CARLA_SAFE_ASSERT_RETURN(param != nullptr,);
  462. float realValue;
  463. if (param->hints & NATIVE_PARAMETER_IS_BOOLEAN)
  464. {
  465. realValue = value > 0.5f ? param->ranges.max : param->ranges.min;
  466. }
  467. else
  468. {
  469. realValue = param->ranges.min + ((param->ranges.max - param->ranges.min) * value);
  470. if (param->hints & NATIVE_PARAMETER_IS_INTEGER)
  471. realValue = std::round(realValue);
  472. }
  473. fDescriptor->set_parameter_value(fHandle, uindex, realValue);
  474. }
  475. // FIXME for v3.0, use const for the input buffer
  476. void vst_processReplacing(float** const inputs, float** const outputs, const int32_t sampleFrames)
  477. {
  478. if (sampleFrames <= 0)
  479. return;
  480. if (fHostType == kHostTypeBitwig && static_cast<int32_t>(fBufferSize) != sampleFrames)
  481. {
  482. // deactivate first if needed
  483. if (fIsActive && fDescriptor->deactivate != nullptr)
  484. fDescriptor->deactivate(fHandle);
  485. fBufferSize = static_cast<uint32_t>(sampleFrames);
  486. if (fDescriptor->dispatcher != nullptr)
  487. fDescriptor->dispatcher(fHandle, NATIVE_PLUGIN_OPCODE_BUFFER_SIZE_CHANGED, 0, sampleFrames, nullptr, 0.0f);
  488. // activate again
  489. if (fDescriptor->activate != nullptr)
  490. fDescriptor->activate(fHandle);
  491. fIsActive = true;
  492. }
  493. if (! fIsActive)
  494. {
  495. // host has not activated the plugin yet, nasty!
  496. vst_dispatcher(effMainsChanged, 0, 1, nullptr, 0.0f);
  497. }
  498. static const int kWantVstTimeFlags = kVstTransportPlaying|kVstPpqPosValid|kVstTempoValid|kVstTimeSigValid;
  499. if (const VstTimeInfo* const vstTimeInfo = (const VstTimeInfo*)hostCallback(audioMasterGetTime, 0, kWantVstTimeFlags))
  500. {
  501. fTimeInfo.frame = static_cast<uint64_t>(std::max(0.0, vstTimeInfo->samplePos));
  502. fTimeInfo.playing = (vstTimeInfo->flags & kVstTransportPlaying);
  503. fTimeInfo.bbt.valid = ((vstTimeInfo->flags & kVstTempoValid) != 0 || (vstTimeInfo->flags & kVstTimeSigValid) != 0);
  504. // ticksPerBeat is not possible with VST
  505. fTimeInfo.bbt.ticksPerBeat = 960.0;
  506. if (vstTimeInfo->flags & kVstTempoValid)
  507. fTimeInfo.bbt.beatsPerMinute = vstTimeInfo->tempo;
  508. else
  509. fTimeInfo.bbt.beatsPerMinute = 120.0;
  510. if ((vstTimeInfo->flags & kVstPpqPosValid) != 0 && (vstTimeInfo->flags & kVstTimeSigValid) != 0)
  511. {
  512. const double ppqPos = std::abs(vstTimeInfo->ppqPos);
  513. const int ppqPerBar = vstTimeInfo->timeSigNumerator * 4 / vstTimeInfo->timeSigDenominator;
  514. const double barBeats = (std::fmod(ppqPos, ppqPerBar) / ppqPerBar) * vstTimeInfo->timeSigNumerator;
  515. const double rest = std::fmod(barBeats, 1.0);
  516. fTimeInfo.bbt.bar = static_cast<int32_t>(ppqPos) / ppqPerBar + 1;
  517. fTimeInfo.bbt.beat = static_cast<int32_t>(barBeats - rest + 0.5) + 1;
  518. fTimeInfo.bbt.tick = rest * fTimeInfo.bbt.ticksPerBeat;
  519. fTimeInfo.bbt.beatsPerBar = static_cast<float>(vstTimeInfo->timeSigNumerator);
  520. fTimeInfo.bbt.beatType = static_cast<float>(vstTimeInfo->timeSigDenominator);
  521. if (vstTimeInfo->ppqPos < 0.0)
  522. {
  523. fTimeInfo.bbt.bar = std::max(1, fTimeInfo.bbt.bar-1);
  524. fTimeInfo.bbt.beat = std::max(1, vstTimeInfo->timeSigNumerator - fTimeInfo.bbt.beat + 1);
  525. fTimeInfo.bbt.tick = std::max(0.0, fTimeInfo.bbt.ticksPerBeat - fTimeInfo.bbt.tick - 1);
  526. }
  527. }
  528. else
  529. {
  530. fTimeInfo.bbt.bar = 1;
  531. fTimeInfo.bbt.beat = 1;
  532. fTimeInfo.bbt.tick = 0.0;
  533. fTimeInfo.bbt.beatsPerBar = 4.0f;
  534. fTimeInfo.bbt.beatType = 4.0f;
  535. }
  536. #if 0
  537. // for testing bad host values
  538. static double last = -99999.0;
  539. if (carla_isNotEqual(vstTimeInfo->samplePos, last))
  540. {
  541. last = vstTimeInfo->samplePos;
  542. carla_stdout("time info %f %f %lu | %i %i",
  543. vstTimeInfo->samplePos, vstTimeInfo->ppqPos, fTimeInfo.frame,
  544. vstTimeInfo->timeSigNumerator, vstTimeInfo->timeSigDenominator);
  545. }
  546. #endif
  547. fTimeInfo.bbt.barStartTick = fTimeInfo.bbt.ticksPerBeat *
  548. static_cast<double>(fTimeInfo.bbt.beatsPerBar) *
  549. (fTimeInfo.bbt.bar - 1);
  550. }
  551. fMidiOutEvents.numEvents = 0;
  552. if (fHandle != nullptr)
  553. fDescriptor->process(fHandle,
  554. inputs, outputs, static_cast<uint32_t>(sampleFrames),
  555. fMidiEvents, fMidiEventCount);
  556. fMidiEventCount = 0;
  557. if (fMidiOutEvents.numEvents > 0)
  558. hostCallback(audioMasterProcessEvents, 0, 0, &fMidiOutEvents, 0.0f);
  559. }
  560. protected:
  561. // -------------------------------------------------------------------
  562. bool handleWriteMidiEvent(const NativeMidiEvent* const event)
  563. {
  564. CARLA_SAFE_ASSERT_RETURN(fDescriptor->midiOuts > 0, false);
  565. CARLA_SAFE_ASSERT_RETURN(event != nullptr, false);
  566. CARLA_SAFE_ASSERT_RETURN(event->data[0] != 0, false);
  567. if (fMidiOutEvents.numEvents >= static_cast<int32_t>(kMaxMidiEvents))
  568. {
  569. // send current events
  570. hostCallback(audioMasterProcessEvents, 0, 0, &fMidiOutEvents, 0.0f);
  571. // clear
  572. fMidiOutEvents.numEvents = 0;
  573. }
  574. VstMidiEvent& vstMidiEvent(fMidiOutEvents.mdata[fMidiOutEvents.numEvents++]);
  575. vstMidiEvent.type = kVstMidiType;
  576. vstMidiEvent.byteSize = kVstMidiEventSize;
  577. uint8_t i=0;
  578. for (; i<event->size; ++i)
  579. vstMidiEvent.midiData[i] = static_cast<char>(event->data[i]);
  580. for (; i<4; ++i)
  581. vstMidiEvent.midiData[i] = 0;
  582. return true;
  583. }
  584. void handleUiParameterChanged(const uint32_t index, const float value) const
  585. {
  586. const NativeParameter* const param = fDescriptor->get_parameter_info(fHandle, index);
  587. CARLA_SAFE_ASSERT_RETURN(param != nullptr,);
  588. const float normalizedValue = (value - param->ranges.min) / (param->ranges.max - param->ranges.min);
  589. hostCallback(audioMasterAutomate, static_cast<int32_t>(index), 0, nullptr, normalizedValue);
  590. }
  591. void handleUiParameterTouch(const uint32_t index, const bool touch) const
  592. {
  593. hostCallback(touch ? audioMasterBeginEdit : audioMasterEndEdit, static_cast<int32_t>(index));
  594. }
  595. void handleUiResize(const int16_t width, const int16_t height)
  596. {
  597. if (kIsUsingUILauncher)
  598. return;
  599. fVstRect.right = width;
  600. fVstRect.bottom = height;
  601. hostCallback(audioMasterSizeWindow, width, height);
  602. }
  603. void handleUiCustomDataChanged(const char* const /*key*/, const char* const /*value*/) const
  604. {
  605. }
  606. void handleUiClosed()
  607. {
  608. }
  609. const char* handleUiOpenFile(const bool /*isDir*/, const char* const /*title*/, const char* const /*filter*/) const
  610. {
  611. // TODO
  612. return nullptr;
  613. }
  614. const char* handleUiSaveFile(const bool /*isDir*/, const char* const /*title*/, const char* const /*filter*/) const
  615. {
  616. // TODO
  617. return nullptr;
  618. }
  619. intptr_t handleDispatcher(const NativeHostDispatcherOpcode opcode, const int32_t index, const intptr_t value, void* const ptr, const float opt)
  620. {
  621. carla_debug("NativePlugin::handleDispatcher(%i, %i, " P_INTPTR ", %p, %f)",
  622. opcode, index, value, ptr, static_cast<double>(opt));
  623. switch (opcode)
  624. {
  625. case NATIVE_HOST_OPCODE_NULL:
  626. case NATIVE_HOST_OPCODE_UPDATE_PARAMETER:
  627. case NATIVE_HOST_OPCODE_UPDATE_MIDI_PROGRAM:
  628. case NATIVE_HOST_OPCODE_RELOAD_PARAMETERS:
  629. case NATIVE_HOST_OPCODE_RELOAD_MIDI_PROGRAMS:
  630. case NATIVE_HOST_OPCODE_UI_UNAVAILABLE:
  631. case NATIVE_HOST_OPCODE_INTERNAL_PLUGIN:
  632. case NATIVE_HOST_OPCODE_QUEUE_INLINE_DISPLAY:
  633. case NATIVE_HOST_OPCODE_REQUEST_IDLE:
  634. case NATIVE_HOST_OPCODE_GET_FILE_PATH:
  635. case NATIVE_HOST_OPCODE_PREVIEW_BUFFER_DATA:
  636. // nothing
  637. break;
  638. case NATIVE_HOST_OPCODE_RELOAD_ALL:
  639. hostCallback(audioMasterUpdateDisplay);
  640. break;
  641. case NATIVE_HOST_OPCODE_HOST_IDLE:
  642. hostCallback(audioMasterIdle);
  643. break;
  644. case NATIVE_HOST_OPCODE_UI_TOUCH_PARAMETER:
  645. CARLA_SAFE_ASSERT_RETURN(index >= 0, 0);
  646. handleUiParameterTouch(static_cast<uint32_t>(index), value != 0);
  647. break;
  648. case NATIVE_HOST_OPCODE_UI_RESIZE:
  649. CARLA_SAFE_ASSERT_RETURN(index > 0 && index < INT16_MAX, 0);
  650. CARLA_SAFE_ASSERT_RETURN(value > 0 && value < INT16_MAX, 0);
  651. handleUiResize(static_cast<int16_t>(index), static_cast<int16_t>(value));
  652. break;
  653. }
  654. // unused for now
  655. return 0;
  656. (void)ptr; (void)opt;
  657. }
  658. private:
  659. // VST stuff
  660. AEffect* const fEffect;
  661. // Native data
  662. NativePluginHandle fHandle;
  663. NativeHostDescriptor fHost;
  664. const NativePluginDescriptor* const fDescriptor;
  665. // VST host data
  666. uint32_t fBufferSize;
  667. double fSampleRate;
  668. // Temporary data
  669. bool fIsActive;
  670. uint32_t fMidiEventCount;
  671. NativeMidiEvent fMidiEvents[kMaxMidiEvents];
  672. char fProgramName[32+1];
  673. NativeTimeInfo fTimeInfo;
  674. ERect fVstRect;
  675. // UI button
  676. CarlaUILauncher* fUiLauncher;
  677. // Host data
  678. enum HostType {
  679. kHostTypeNull = 0,
  680. kHostTypeArdour,
  681. kHostTypeBitwig
  682. };
  683. HostType fHostType;
  684. // host callback
  685. intptr_t hostCallback(const int32_t opcode,
  686. const int32_t index = 0,
  687. const intptr_t value = 0,
  688. void* const ptr = nullptr,
  689. const float opt = 0.0f) const
  690. {
  691. return VSTAudioMaster(fEffect, opcode, index, value, ptr, opt);
  692. }
  693. struct FixedVstEvents {
  694. int32_t numEvents;
  695. intptr_t reserved;
  696. VstEvent* data[kMaxMidiEvents];
  697. VstMidiEvent mdata[kMaxMidiEvents];
  698. FixedVstEvents()
  699. : numEvents(0),
  700. reserved(0)
  701. {
  702. for (uint32_t i=0; i<kMaxMidiEvents; ++i)
  703. data[i] = (VstEvent*)&mdata[i];
  704. carla_zeroStructs(mdata, kMaxMidiEvents);
  705. }
  706. CARLA_DECLARE_NON_COPY_STRUCT(FixedVstEvents);
  707. } fMidiOutEvents;
  708. char* fStateChunk;
  709. // -------------------------------------------------------------------
  710. #define handlePtr ((NativePlugin*)handle)
  711. static uint32_t host_get_buffer_size(NativeHostHandle handle)
  712. {
  713. return handlePtr->fBufferSize;
  714. }
  715. static double host_get_sample_rate(NativeHostHandle handle)
  716. {
  717. return handlePtr->fSampleRate;
  718. }
  719. static bool host_is_offline(NativeHostHandle /*handle*/)
  720. {
  721. // TODO
  722. return false;
  723. }
  724. static const NativeTimeInfo* host_get_time_info(NativeHostHandle handle)
  725. {
  726. return &(handlePtr->fTimeInfo);
  727. }
  728. static bool host_write_midi_event(NativeHostHandle handle, const NativeMidiEvent* event)
  729. {
  730. return handlePtr->handleWriteMidiEvent(event);
  731. }
  732. static void host_ui_parameter_changed(NativeHostHandle handle, uint32_t index, float value)
  733. {
  734. handlePtr->handleUiParameterChanged(index, value);
  735. }
  736. static void host_ui_custom_data_changed(NativeHostHandle handle, const char* key, const char* value)
  737. {
  738. handlePtr->handleUiCustomDataChanged(key, value);
  739. }
  740. static void host_ui_closed(NativeHostHandle handle)
  741. {
  742. handlePtr->handleUiClosed();
  743. }
  744. static const char* host_ui_open_file(NativeHostHandle handle, bool isDir, const char* title, const char* filter)
  745. {
  746. return handlePtr->handleUiOpenFile(isDir, title, filter);
  747. }
  748. static const char* host_ui_save_file(NativeHostHandle handle, bool isDir, const char* title, const char* filter)
  749. {
  750. return handlePtr->handleUiSaveFile(isDir, title, filter);
  751. }
  752. static intptr_t host_dispatcher(NativeHostHandle handle, NativeHostDispatcherOpcode opcode, int32_t index, intptr_t value, void* ptr, float opt)
  753. {
  754. return handlePtr->handleDispatcher(opcode, index, value, ptr, opt);
  755. }
  756. #undef handlePtr
  757. CARLA_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(NativePlugin)
  758. };
  759. // -----------------------------------------------------------------------
  760. #define validObject effect != nullptr && effect->object != nullptr
  761. #define validPlugin effect != nullptr && effect->object != nullptr && ((VstObject*)effect->object)->plugin != nullptr
  762. #define vstObjectPtr (VstObject*)effect->object
  763. #define pluginPtr (vstObjectPtr)->plugin
  764. intptr_t vst_dispatcherCallback(AEffect* effect, int32_t opcode, int32_t index, intptr_t value, void* ptr, float opt)
  765. {
  766. // handle base opcodes
  767. switch (opcode)
  768. {
  769. case effOpen:
  770. if (VstObject* const obj = vstObjectPtr)
  771. {
  772. // this must always be valid
  773. CARLA_SAFE_ASSERT_RETURN(obj->audioMaster != nullptr, 0);
  774. // some hosts call effOpen twice
  775. if (obj->plugin != nullptr)
  776. return 1;
  777. d_lastBufferSize = static_cast<uint32_t>(VSTAudioMaster(effect, audioMasterGetBlockSize, 0, 0, nullptr, 0.0f));
  778. d_lastSampleRate = static_cast<double>(VSTAudioMaster(effect, audioMasterGetSampleRate, 0, 0, nullptr, 0.0f));
  779. // some hosts are not ready at this point or return 0 buffersize/samplerate
  780. if (d_lastBufferSize == 0)
  781. d_lastBufferSize = 2048;
  782. if (d_lastSampleRate <= 0.0)
  783. d_lastSampleRate = 44100.0;
  784. const NativePluginDescriptor* pluginDesc = nullptr;
  785. PluginListManager& plm(PluginListManager::getInstance());
  786. #ifdef CARLA_VST_SHELL
  787. if (effect->uniqueID == 0)
  788. effect->uniqueID = kShellUniqueID;
  789. if (effect->uniqueID == kShellUniqueID)
  790. {
  791. // first open for discovery, nothing to do
  792. effect->numParams = 0;
  793. effect->numPrograms = 0;
  794. effect->numInputs = 0;
  795. effect->numOutputs = 0;
  796. return 1;
  797. }
  798. const int32_t plugIndex = effect->uniqueID - kShellUniqueID - 1;
  799. CARLA_SAFE_ASSERT_RETURN(plugIndex >= 0, 0);
  800. pluginDesc = plm.descs.getAt(static_cast<size_t>(plugIndex), nullptr);
  801. #else // CARLA_VST_SHELL
  802. # if defined(CARLA_PLUGIN_64CH)
  803. const char* const pluginLabel = "carlapatchbay64";
  804. # elif defined(CARLA_PLUGIN_32CH)
  805. const char* const pluginLabel = "carlapatchbay32";
  806. # elif defined(CARLA_PLUGIN_16CH)
  807. const char* const pluginLabel = "carlapatchbay16";
  808. # elif CARLA_PLUGIN_PATCHBAY
  809. const char* const pluginLabel = "carlapatchbay";
  810. # else
  811. const char* const pluginLabel = "carlarack";
  812. # endif
  813. for (LinkedList<const NativePluginDescriptor*>::Itenerator it = plm.descs.begin2(); it.valid(); it.next())
  814. {
  815. const NativePluginDescriptor* const& tmpDesc(it.getValue(nullptr));
  816. CARLA_SAFE_ASSERT_CONTINUE(tmpDesc != nullptr);
  817. if (std::strcmp(tmpDesc->label, pluginLabel) == 0)
  818. {
  819. pluginDesc = tmpDesc;
  820. break;
  821. }
  822. }
  823. #endif // CARLA_VST_SHELL
  824. CARLA_SAFE_ASSERT_RETURN(pluginDesc != nullptr, 0);
  825. #ifdef CARLA_VST_SHELL
  826. effect->numPrograms = 1;
  827. effect->numParams = static_cast<int>(pluginDesc->paramIns);
  828. effect->numInputs = static_cast<int>(pluginDesc->audioIns);
  829. effect->numOutputs = static_cast<int>(pluginDesc->audioOuts);
  830. if (pluginDesc->hints & NATIVE_PLUGIN_HAS_UI)
  831. effect->flags |= effFlagsHasEditor;
  832. else
  833. effect->flags &= ~effFlagsHasEditor;
  834. /* carla as plugin always has NATIVE_PLUGIN_IS_SYNTH set
  835. if (pluginDesc->hints & NATIVE_PLUGIN_IS_SYNTH)
  836. effect->flags |= effFlagsIsSynth;
  837. else
  838. effect->flags &= ~effFlagsIsSynth;
  839. */
  840. #endif // CARLA_VST_SHELL
  841. #if CARLA_PLUGIN_SYNTH
  842. // override if requested
  843. effect->flags |= effFlagsIsSynth;
  844. #endif
  845. obj->plugin = new NativePlugin(effect, pluginDesc);
  846. return 1;
  847. }
  848. return 0;
  849. case effClose:
  850. if (VstObject* const obj = vstObjectPtr)
  851. {
  852. NativePlugin* const plugin(obj->plugin);
  853. if (plugin != nullptr)
  854. {
  855. obj->plugin = nullptr;
  856. delete plugin;
  857. }
  858. #if 0
  859. /* This code invalidates the object created in VSTPluginMain
  860. * Probably not safe against all hosts */
  861. obj->audioMaster = nullptr;
  862. effect->object = nullptr;
  863. delete obj;
  864. #endif
  865. return 1;
  866. }
  867. //delete effect;
  868. return 0;
  869. case effGetPlugCategory:
  870. #ifdef CARLA_VST_SHELL
  871. if (validPlugin)
  872. {
  873. #if CARLA_PLUGIN_SYNTH
  874. return kPlugCategSynth;
  875. #else
  876. const NativePluginDescriptor* const desc = pluginPtr->getDescriptor();
  877. return desc->category == NATIVE_PLUGIN_CATEGORY_SYNTH ? kPlugCategSynth : kPlugCategEffect;
  878. #endif
  879. }
  880. return kPlugCategShell;
  881. #elif CARLA_PLUGIN_SYNTH
  882. return kPlugCategSynth;
  883. #else
  884. return kPlugCategEffect;
  885. #endif
  886. case effGetEffectName:
  887. if (char* const cptr = (char*)ptr)
  888. {
  889. #if defined(CARLA_VST_SHELL)
  890. if (validPlugin)
  891. {
  892. const NativePluginDescriptor* const desc = pluginPtr->getDescriptor();
  893. #if CARLA_PLUGIN_SYNTH
  894. std::strncpy(cptr, desc->name, 32);
  895. #else
  896. std::snprintf(cptr, 32, "%s FX", desc->name);
  897. #endif
  898. }
  899. else
  900. {
  901. std::strncpy(cptr, "Carla-VstShell", 32);
  902. }
  903. #elif defined(CARLA_PLUGIN_64CH)
  904. std::strncpy(cptr, "Carla-Patchbay64", 32);
  905. #elif defined(CARLA_PLUGIN_32CH)
  906. std::strncpy(cptr, "Carla-Patchbay32", 32);
  907. #elif defined(CARLA_PLUGIN_16CH)
  908. std::strncpy(cptr, "Carla-Patchbay16", 32);
  909. #elif CARLA_PLUGIN_PATCHBAY
  910. # if CARLA_PLUGIN_SYNTH
  911. std::strncpy(cptr, "Carla-Patchbay", 32);
  912. # else
  913. std::strncpy(cptr, "Carla-PatchbayFX", 32);
  914. # endif
  915. #else // Rack mode
  916. # if CARLA_PLUGIN_SYNTH
  917. std::strncpy(cptr, "Carla-Rack", 32);
  918. # else
  919. std::strncpy(cptr, "Carla-RackFX", 32);
  920. # endif
  921. #endif
  922. return 1;
  923. }
  924. return 0;
  925. case effGetVendorString:
  926. if (char* const cptr = (char*)ptr)
  927. {
  928. #ifdef CARLA_VST_SHELL
  929. if (validPlugin)
  930. {
  931. const NativePluginDescriptor* const desc = pluginPtr->getDescriptor();
  932. std::strncpy(cptr, desc->maker, 32);
  933. }
  934. else
  935. #endif
  936. std::strncpy(cptr, "falkTX", 32);
  937. return 1;
  938. }
  939. return 0;
  940. case effGetProductString:
  941. if (char* const cptr = (char*)ptr)
  942. {
  943. #if defined(CARLA_VST_SHELL)
  944. if (validPlugin)
  945. {
  946. const NativePluginDescriptor* const desc = pluginPtr->getDescriptor();
  947. #if CARLA_PLUGIN_SYNTH
  948. std::strncpy(cptr, desc->label, 32);
  949. #else
  950. std::snprintf(cptr, 32, "%sFX", desc->label);
  951. #endif
  952. }
  953. else
  954. {
  955. std::strncpy(cptr, "CarlaVstShell", 32);
  956. }
  957. #elif defined(CARLA_PLUGIN_64CH)
  958. std::strncpy(cptr, "CarlaPatchbay64", 32);
  959. #elif defined(CARLA_PLUGIN_32CH)
  960. std::strncpy(cptr, "CarlaPatchbay32", 32);
  961. #elif defined(CARLA_PLUGIN_16CH)
  962. std::strncpy(cptr, "CarlaPatchbay16", 32);
  963. #elif CARLA_PLUGIN_PATCHBAY
  964. # if CARLA_PLUGIN_SYNTH
  965. std::strncpy(cptr, "CarlaPatchbay", 32);
  966. # else
  967. std::strncpy(cptr, "CarlaPatchbayFX", 32);
  968. # endif
  969. #else
  970. # if CARLA_PLUGIN_SYNTH
  971. std::strncpy(cptr, "CarlaRack", 32);
  972. # else
  973. std::strncpy(cptr, "CarlaRackFX", 32);
  974. # endif
  975. #endif
  976. return 1;
  977. }
  978. return 0;
  979. case effGetVendorVersion:
  980. return CARLA_VERSION_HEX;
  981. case effGetVstVersion:
  982. return kVstVersion;
  983. #ifdef CARLA_VST_SHELL
  984. case effShellGetNextPlugin:
  985. if (char* const cptr = (char*)ptr)
  986. {
  987. CARLA_SAFE_ASSERT_RETURN(effect != nullptr, 0);
  988. CARLA_SAFE_ASSERT_RETURN(effect->uniqueID >= kShellUniqueID, 0);
  989. PluginListManager& plm(PluginListManager::getInstance());
  990. for (;;)
  991. {
  992. const uint index2 = static_cast<uint>(effect->uniqueID - kShellUniqueID);
  993. if (index2 >= plm.descs.count())
  994. {
  995. effect->uniqueID = kShellUniqueID;
  996. return 0;
  997. }
  998. const NativePluginDescriptor* const desc = plm.descs.getAt(index2, nullptr);
  999. CARLA_SAFE_ASSERT_RETURN(desc != nullptr, 0);
  1000. ++effect->uniqueID;
  1001. if (desc->midiIns > 1 || desc->midiOuts > 1)
  1002. continue;
  1003. #if CARLA_PLUGIN_SYNTH
  1004. std::strncpy(cptr, desc->label, 32);
  1005. #else
  1006. std::snprintf(cptr, 32, "%sFX", desc->label);
  1007. #endif
  1008. return effect->uniqueID;
  1009. }
  1010. }
  1011. #endif
  1012. };
  1013. // handle advanced opcodes
  1014. if (validPlugin)
  1015. return pluginPtr->vst_dispatcher(opcode, index, value, ptr, opt);
  1016. return 0;
  1017. }
  1018. float vst_getParameterCallback(AEffect* effect, int32_t index)
  1019. {
  1020. if (validPlugin)
  1021. return pluginPtr->vst_getParameter(index);
  1022. return 0.0f;
  1023. }
  1024. void vst_setParameterCallback(AEffect* effect, int32_t index, float value)
  1025. {
  1026. if (validPlugin)
  1027. pluginPtr->vst_setParameter(index, value);
  1028. }
  1029. void vst_processCallback(AEffect* effect, float** inputs, float** outputs, int32_t sampleFrames)
  1030. {
  1031. if (validPlugin)
  1032. pluginPtr->vst_processReplacing(inputs, outputs, sampleFrames);
  1033. }
  1034. void vst_processReplacingCallback(AEffect* effect, float** inputs, float** outputs, int32_t sampleFrames)
  1035. {
  1036. if (validPlugin)
  1037. pluginPtr->vst_processReplacing(inputs, outputs, sampleFrames);
  1038. }
  1039. #undef pluginPtr
  1040. #undef validObject
  1041. #undef validPlugin
  1042. #undef vstObjectPtr
  1043. // -----------------------------------------------------------------------
  1044. const AEffect* VSTPluginMainInit(AEffect* const effect)
  1045. {
  1046. #if defined(CARLA_VST_SHELL)
  1047. if (const intptr_t uniqueID = VSTAudioMaster(effect, audioMasterCurrentId, 0, 0, nullptr, 0.0f))
  1048. effect->uniqueID = static_cast<int>(uniqueID);
  1049. else
  1050. effect->uniqueID = kShellUniqueID;
  1051. #elif defined(CARLA_PLUGIN_64CH)
  1052. effect->uniqueID = kBaseUniqueID+7;
  1053. #elif defined(CARLA_PLUGIN_32CH)
  1054. effect->uniqueID = kBaseUniqueID+6;
  1055. #elif defined(CARLA_PLUGIN_16CH)
  1056. effect->uniqueID = kBaseUniqueID+5;
  1057. #elif CARLA_PLUGIN_PATCHBAY
  1058. # if CARLA_PLUGIN_SYNTH
  1059. effect->uniqueID = kBaseUniqueID+4;
  1060. # else
  1061. effect->uniqueID = kBaseUniqueID+3;
  1062. # endif
  1063. #else
  1064. # if CARLA_PLUGIN_SYNTH
  1065. effect->uniqueID = kBaseUniqueID+2;
  1066. # else
  1067. effect->uniqueID = kBaseUniqueID+1;
  1068. # endif
  1069. #endif
  1070. // plugin fields
  1071. #ifndef CARLA_VST_SHELL
  1072. effect->numParams = kNumParameters;
  1073. effect->numPrograms = 1;
  1074. # if defined(CARLA_PLUGIN_64CH)
  1075. effect->numInputs = 64;
  1076. effect->numOutputs = 64;
  1077. # elif defined(CARLA_PLUGIN_32CH)
  1078. effect->numInputs = 32;
  1079. effect->numOutputs = 32;
  1080. # elif defined(CARLA_PLUGIN_16CH)
  1081. effect->numInputs = 16;
  1082. effect->numOutputs = 16;
  1083. # else
  1084. effect->numInputs = 2;
  1085. effect->numOutputs = 2;
  1086. # endif
  1087. #endif
  1088. // plugin flags
  1089. effect->flags |= effFlagsCanReplacing;
  1090. effect->flags |= effFlagsProgramChunks;
  1091. #ifndef CARLA_VST_SHELL
  1092. effect->flags |= effFlagsHasEditor;
  1093. #endif
  1094. #if CARLA_PLUGIN_SYNTH
  1095. effect->flags |= effFlagsIsSynth;
  1096. #endif
  1097. return effect;
  1098. // may be unused
  1099. (void)kBaseUniqueID;
  1100. }
  1101. // -----------------------------------------------------------------------