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.

CarlaPlugin.hpp 29KB

11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
10 years ago
11 years ago
10 years ago
11 years ago
10 years ago
10 years ago
11 years ago
11 years ago
11 years ago
11 years ago
10 years ago
11 years ago
11 years ago
10 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968
  1. /*
  2. * Carla Plugin Host
  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. #ifndef CARLA_PLUGIN_HPP_INCLUDED
  18. #define CARLA_PLUGIN_HPP_INCLUDED
  19. #include "CarlaBackend.h"
  20. // -----------------------------------------------------------------------
  21. // Avoid including extra libs here
  22. typedef void* lo_message;
  23. typedef struct _NativePluginDescriptor NativePluginDescriptor;
  24. struct LADSPA_RDF_Descriptor;
  25. // -----------------------------------------------------------------------
  26. CARLA_BACKEND_START_NAMESPACE
  27. #if 0
  28. } /* Fix editor indentation */
  29. #endif
  30. // -----------------------------------------------------------------------
  31. /*!
  32. * @defgroup CarlaPluginAPI Carla Plugin API
  33. *
  34. * The Carla Plugin API.
  35. * @{
  36. */
  37. class CarlaEngineAudioPort;
  38. class CarlaEngineCVPort;
  39. class CarlaEngineEventPort;
  40. struct CarlaStateSave;
  41. // -----------------------------------------------------------------------
  42. /*!
  43. * Carla Backend base plugin class
  44. *
  45. * This is the base class for all available plugin types available in Carla Backend.
  46. * All virtual calls are implemented in this class as fallback (except reload and process),
  47. * so it's safe to only override needed calls.
  48. *
  49. * @see PluginType
  50. */
  51. class CARLA_API CarlaPlugin
  52. {
  53. protected:
  54. /*!
  55. * This is the constructor of the base plugin class.
  56. *
  57. * @param engine The engine which this plugin belongs to, must not be null
  58. * @param id The 'id' of this plugin, must be between 0 and CarlaEngine::maxPluginNumber()
  59. */
  60. CarlaPlugin(CarlaEngine* const engine, const uint id);
  61. public:
  62. /*!
  63. * This is the destructor of the base plugin class.
  64. */
  65. virtual ~CarlaPlugin();
  66. // -------------------------------------------------------------------
  67. // Information (base)
  68. /*!
  69. * Get the plugin's type (a subclass of CarlaPlugin).
  70. *
  71. * @note Plugin bridges will return their respective plugin type, there is no plugin type such as "bridge".
  72. * To check if a plugin is a bridge use:
  73. * @code
  74. * if (getHints() & PLUGIN_IS_BRIDGE)
  75. * ...
  76. * @endcode
  77. */
  78. virtual PluginType getType() const noexcept = 0;
  79. /*!
  80. * Get the plugin's id (as passed in the constructor).
  81. *
  82. * @see setId()
  83. */
  84. uint getId() const noexcept;
  85. /*!
  86. * Get the plugin's hints.
  87. *
  88. * @see PluginHints
  89. */
  90. uint getHints() const noexcept;
  91. /*!
  92. * Get the plugin's options (currently in use).
  93. *
  94. * @see PluginOptions, getOptionsAvailable() and setOption()
  95. */
  96. uint getOptionsEnabled() const noexcept;
  97. /*!
  98. * Check if the plugin is enabled.
  99. * When a plugin is disabled, it will never be processed or managed in any way.
  100. *
  101. * @see setEnabled()
  102. */
  103. bool isEnabled() const noexcept;
  104. /*!
  105. * Get the plugin's internal name.
  106. * This name is unique within all plugins in an engine.
  107. *
  108. * @see getRealName() and setName()
  109. */
  110. const char* getName() const noexcept;
  111. /*!
  112. * Get the currently loaded DLL filename for this plugin.
  113. * (Sound kits return their exact filename).
  114. */
  115. const char* getFilename() const noexcept;
  116. /*!
  117. * Get the plugins's icon name.
  118. */
  119. const char* getIconName() const noexcept;
  120. /*!
  121. * Get the plugin's category (delay, filter, synth, etc).
  122. */
  123. virtual PluginCategory getCategory() const noexcept;
  124. /*!
  125. * Get the plugin's native unique Id.
  126. * May return 0 on plugin types that don't support Ids.
  127. */
  128. virtual int64_t getUniqueId() const noexcept;
  129. /*!
  130. * Get the plugin's latency, in sample frames.
  131. */
  132. virtual uint32_t getLatencyInFrames() const noexcept;
  133. // -------------------------------------------------------------------
  134. // Information (count)
  135. /*!
  136. * Get the number of audio inputs.
  137. */
  138. uint32_t getAudioInCount() const noexcept;
  139. /*!
  140. * Get the number of audio outputs.
  141. */
  142. uint32_t getAudioOutCount() const noexcept;
  143. /*!
  144. * Get the number of CV inputs.
  145. */
  146. uint32_t getCVInCount() const noexcept;
  147. /*!
  148. * Get the number of CV outputs.
  149. */
  150. uint32_t getCVOutCount() const noexcept;
  151. /*!
  152. * Get the number of MIDI inputs.
  153. */
  154. virtual uint32_t getMidiInCount() const noexcept;
  155. /*!
  156. * Get the number of MIDI outputs.
  157. */
  158. virtual uint32_t getMidiOutCount() const noexcept;
  159. /*!
  160. * Get the number of parameters.
  161. * To know the number of parameter inputs and outputs separately use getParameterCountInfo() instead.
  162. */
  163. uint32_t getParameterCount() const noexcept;
  164. /*!
  165. * Get the number of scalepoints for parameter @a parameterId.
  166. */
  167. virtual uint32_t getParameterScalePointCount(const uint32_t parameterId) const noexcept;
  168. /*!
  169. * Get the number of programs.
  170. */
  171. uint32_t getProgramCount() const noexcept;
  172. /*!
  173. * Get the number of MIDI programs.
  174. */
  175. uint32_t getMidiProgramCount() const noexcept;
  176. /*!
  177. * Get the number of custom data sets.
  178. */
  179. uint32_t getCustomDataCount() const noexcept;
  180. // -------------------------------------------------------------------
  181. // Information (current data)
  182. /*!
  183. * Get the current program number (-1 if unset).
  184. *
  185. * @see setProgram()
  186. */
  187. int32_t getCurrentProgram() const noexcept;
  188. /*!
  189. * Get the current MIDI program number (-1 if unset).
  190. *
  191. * @see setMidiProgram()
  192. * @see setMidiProgramById()
  193. */
  194. int32_t getCurrentMidiProgram() const noexcept;
  195. /*!
  196. * Get the parameter data of @a parameterId.
  197. */
  198. const ParameterData& getParameterData(const uint32_t parameterId) const noexcept;
  199. /*!
  200. * Get the parameter ranges of @a parameterId.
  201. */
  202. const ParameterRanges& getParameterRanges(const uint32_t parameterId) const noexcept;
  203. /*!
  204. * Check if parameter @a parameterId is of output type.
  205. */
  206. bool isParameterOutput(const uint32_t parameterId) const noexcept;
  207. /*!
  208. * Get the MIDI program at @a index.
  209. *
  210. * @see getMidiProgramName()
  211. */
  212. const MidiProgramData& getMidiProgramData(const uint32_t index) const noexcept;
  213. /*!
  214. * Get the custom data set at @a index.
  215. *
  216. * @see getCustomDataCount() and setCustomData()
  217. */
  218. const CustomData& getCustomData(const uint32_t index) const noexcept;
  219. /*!
  220. * Get the complete plugin chunk data into @a dataPtr.
  221. *
  222. * @note Make sure to verify the plugin supports chunks before calling this function!
  223. * @return The size of the chunk or 0 if invalid.
  224. *
  225. * @see setChunkData()
  226. */
  227. virtual std::size_t getChunkData(void** const dataPtr) noexcept;
  228. // -------------------------------------------------------------------
  229. // Information (per-plugin data)
  230. /*!
  231. * Get the plugin available options.
  232. *
  233. * @see PluginOptions, getOptions() and setOption()
  234. */
  235. virtual uint getOptionsAvailable() const noexcept;
  236. /*!
  237. * Get the current parameter value of @a parameterId.
  238. */
  239. virtual float getParameterValue(const uint32_t parameterId) const noexcept;
  240. /*!
  241. * Get the scalepoint @a scalePointId value of the parameter @a parameterId.
  242. */
  243. virtual float getParameterScalePointValue(const uint32_t parameterId, const uint32_t scalePointId) const noexcept;
  244. /*!
  245. * Get the plugin's label (URI for LV2 plugins).
  246. */
  247. virtual void getLabel(char* const strBuf) const noexcept;
  248. /*!
  249. * Get the plugin's maker.
  250. */
  251. virtual void getMaker(char* const strBuf) const noexcept;
  252. /*!
  253. * Get the plugin's copyright/license.
  254. */
  255. virtual void getCopyright(char* const strBuf) const noexcept;
  256. /*!
  257. * Get the plugin's (real) name.
  258. *
  259. * @see getName() and setName()
  260. */
  261. virtual void getRealName(char* const strBuf) const noexcept;
  262. /*!
  263. * Get the name of the parameter @a parameterId.
  264. */
  265. virtual void getParameterName(const uint32_t parameterId, char* const strBuf) const noexcept;
  266. /*!
  267. * Get the symbol of the parameter @a parameterId.
  268. */
  269. virtual void getParameterSymbol(const uint32_t parameterId, char* const strBuf) const noexcept;
  270. /*!
  271. * Get the custom text of the parameter @a parameterId.
  272. * @see PARAMETER_USES_CUSTOM_TEXT
  273. */
  274. virtual void getParameterText(const uint32_t parameterId, char* const strBuf) const noexcept;
  275. /*!
  276. * Get the unit of the parameter @a parameterId.
  277. */
  278. virtual void getParameterUnit(const uint32_t parameterId, char* const strBuf) const noexcept;
  279. /*!
  280. * Get the scalepoint @a scalePointId label of the parameter @a parameterId.
  281. */
  282. virtual void getParameterScalePointLabel(const uint32_t parameterId, const uint32_t scalePointId, char* const strBuf) const noexcept;
  283. /*!
  284. * Get the current parameter value of @a parameterId.
  285. * @a parameterId can be negative to allow internal parameters.
  286. * @see InternalParametersIndex
  287. */
  288. float getInternalParameterValue(const int32_t parameterId) const noexcept;
  289. /*!
  290. * Get the name of the program at @a index.
  291. */
  292. void getProgramName(const uint32_t index, char* const strBuf) const noexcept;
  293. /*!
  294. * Get the name of the MIDI program at @a index.
  295. *
  296. * @see getMidiProgramInfo()
  297. */
  298. void getMidiProgramName(const uint32_t index, char* const strBuf) const noexcept;
  299. /*!
  300. * Get information about the plugin's parameter count.
  301. * This is used to check how many input, output and total parameters are available.
  302. *
  303. * @note Some parameters might not be input or output (ie, invalid).
  304. *
  305. * @see getParameterCount()
  306. */
  307. void getParameterCountInfo(uint32_t& ins, uint32_t& outs) const noexcept;
  308. // -------------------------------------------------------------------
  309. // Set data (state)
  310. /*!
  311. * Tell the plugin to prepare for save.
  312. */
  313. virtual void prepareForSave();
  314. /*!
  315. * Reset all possible parameters.
  316. */
  317. virtual void resetParameters() noexcept;
  318. /*!
  319. * Randomize all possible parameters.
  320. */
  321. virtual void randomizeParameters() noexcept;
  322. /*!
  323. * Get the plugin's save state.
  324. * The plugin will automatically call prepareForSave() if requested.
  325. *
  326. * @see loadStateSave()
  327. */
  328. const CarlaStateSave& getStateSave(const bool callPrepareForSave = true);
  329. /*!
  330. * Get the plugin's save state.
  331. *
  332. * @see getStateSave()
  333. */
  334. void loadStateSave(const CarlaStateSave& stateSave);
  335. /*!
  336. * Save the current plugin state to @a filename.
  337. *
  338. * @see loadStateFromFile()
  339. */
  340. bool saveStateToFile(const char* const filename);
  341. /*!
  342. * Save the plugin state from @a filename.
  343. *
  344. * @see saveStateToFile()
  345. */
  346. bool loadStateFromFile(const char* const filename);
  347. // -------------------------------------------------------------------
  348. // Set data (internal stuff)
  349. /*!
  350. * Set the plugin's id to @a newId.
  351. *
  352. * @see getId()
  353. * @note RT call
  354. */
  355. virtual void setId(const uint newId) noexcept;
  356. /*!
  357. * Set the plugin's name to @a newName.
  358. *
  359. * @see getName() and getRealName()
  360. */
  361. virtual void setName(const char* const newName);
  362. /*!
  363. * Set a plugin's option.
  364. *
  365. * @see getOptions() and getOptionsAvailable()
  366. */
  367. virtual void setOption(const uint option, const bool yesNo, const bool sendCallback);
  368. /*!
  369. * Enable or disable the plugin according to @a yesNo.
  370. * When a plugin is disabled, it will never be processed or managed in any way.
  371. *
  372. * @see isEnabled()
  373. */
  374. void setEnabled(const bool yesNo) noexcept;
  375. /*!
  376. * Set plugin as active according to @a active.
  377. *
  378. * @param sendOsc Send message change over OSC
  379. * @param sendCallback Send message change to registered callback
  380. */
  381. void setActive(const bool active, const bool sendOsc, const bool sendCallback) noexcept;
  382. #ifndef BUILD_BRIDGE
  383. /*!
  384. * Set the plugin's dry/wet signal value to @a value.
  385. * @a value must be between 0.0 and 1.0.
  386. *
  387. * @param sendOsc Send message change over OSC
  388. * @param sendCallback Send message change to registered callback
  389. */
  390. void setDryWet(const float value, const bool sendOsc, const bool sendCallback) noexcept;
  391. /*!
  392. * Set the plugin's output volume to @a value.
  393. * @a value must be between 0.0 and 1.27.
  394. *
  395. * @param sendOsc Send message change over OSC
  396. * @param sendCallback Send message change to registered callback
  397. */
  398. void setVolume(const float value, const bool sendOsc, const bool sendCallback) noexcept;
  399. /*!
  400. * Set the plugin's output left balance value to @a value.
  401. * @a value must be between -1.0 and 1.0.
  402. *
  403. * @param sendOsc Send message change over OSC
  404. * @param sendCallback Send message change to registered callback
  405. *
  406. * @note Pure-Stereo plugins only!
  407. */
  408. void setBalanceLeft(const float value, const bool sendOsc, const bool sendCallback) noexcept;
  409. /*!
  410. * Set the plugin's output right balance value to @a value.
  411. * @a value must be between -1.0 and 1.0.
  412. *
  413. * @param sendOsc Send message change over OSC
  414. * @param sendCallback Send message change to registered callback
  415. *
  416. * @note Pure-Stereo plugins only!
  417. */
  418. void setBalanceRight(const float value, const bool sendOsc, const bool sendCallback) noexcept;
  419. /*!
  420. * Set the plugin's output panning value to @a value.
  421. * @a value must be between -1.0 and 1.0.
  422. *
  423. * @param sendOsc Send message change over OSC
  424. * @param sendCallback Send message change to registered callback
  425. *
  426. * @note Force-Stereo plugins only!
  427. */
  428. void setPanning(const float value, const bool sendOsc, const bool sendCallback) noexcept;
  429. #endif
  430. /*!
  431. * Set the plugin's midi control channel.
  432. *
  433. * @param sendOsc Send message change over OSC
  434. * @param sendCallback Send message change to registered callback
  435. */
  436. virtual void setCtrlChannel(const int8_t channel, const bool sendOsc, const bool sendCallback) noexcept;
  437. // -------------------------------------------------------------------
  438. // Set data (plugin-specific stuff)
  439. /*!
  440. * Set a plugin's parameter value.
  441. *
  442. * @param parameterId The parameter to change
  443. * @param value The new parameter value, must be within the parameter's range
  444. * @param sendGui Send message change to plugin's custom GUI, if any
  445. * @param sendOsc Send message change over OSC
  446. * @param sendCallback Send message change to registered callback
  447. *
  448. * @see getParameterValue()
  449. */
  450. virtual void setParameterValue(const uint32_t parameterId, const float value, const bool sendGui, const bool sendOsc, const bool sendCallback) noexcept;
  451. /*!
  452. * Set a plugin's parameter value, including internal parameters.
  453. * @a rindex can be negative to allow internal parameters change (as defined in InternalParametersIndex).
  454. *
  455. * @see setParameterValue()
  456. * @see setActive()
  457. * @see setDryWet()
  458. * @see setVolume()
  459. * @see setBalanceLeft()
  460. * @see setBalanceRight()
  461. */
  462. void setParameterValueByRealIndex(const int32_t rindex, const float value, const bool sendGui, const bool sendOsc, const bool sendCallback) noexcept;
  463. /*!
  464. * Set parameter's @a parameterId MIDI channel to @a channel.
  465. * @a channel must be between 0 and 15.
  466. */
  467. virtual void setParameterMidiChannel(const uint32_t parameterId, const uint8_t channel, const bool sendOsc, const bool sendCallback) noexcept;
  468. /*!
  469. * Set parameter's @a parameterId MIDI CC to @a cc.
  470. * @a cc must be between 0 and 119 (0x77), or -1 for invalid.
  471. */
  472. virtual void setParameterMidiCC(const uint32_t parameterId, const int16_t cc, const bool sendOsc, const bool sendCallback) noexcept;
  473. /*!
  474. * Add a custom data set.
  475. * If @a key already exists, its current value will be swapped with @a value.
  476. *
  477. * @param type Type of data used in @a value.
  478. * @param key A key identifing this data set.
  479. * @param value The value of the data set, of type @a type.
  480. * @param sendGui Send message change to plugin's custom GUI, if any
  481. *
  482. * @see getCustomDataCount() and getCustomData()
  483. */
  484. virtual void setCustomData(const char* const type, const char* const key, const char* const value, const bool sendGui);
  485. /*!
  486. * Set the complete chunk data as @a data.
  487. *
  488. * @see getChunkData()
  489. *
  490. * @note Make sure to verify the plugin supports chunks before calling this function
  491. */
  492. virtual void setChunkData(const void* const data, const std::size_t dataSize);
  493. /*!
  494. * Change the current plugin program to @a index.
  495. *
  496. * If @a index is negative the plugin's program will be considered unset.
  497. * The plugin's default parameter values will be updated when this function is called.
  498. *
  499. * @param index New program index to use
  500. * @param sendGui Send message change to plugin's custom GUI, if any
  501. * @param sendOsc Send message change over OSC
  502. * @param sendCallback Send message change to registered callback
  503. */
  504. virtual void setProgram(const int32_t index, const bool sendGui, const bool sendOsc, const bool sendCallback) noexcept;
  505. /*!
  506. * Change the current MIDI plugin program to @a index.
  507. *
  508. * If @a index is negative the plugin's program will be considered unset.
  509. * The plugin's default parameter values will be updated when this function is called.
  510. *
  511. * @param index New program index to use
  512. * @param sendGui Send message change to plugin's custom GUI, if any
  513. * @param sendOsc Send message change over OSC
  514. * @param sendCallback Send message change to registered callback
  515. */
  516. virtual void setMidiProgram(const int32_t index, const bool sendGui, const bool sendOsc, const bool sendCallback) noexcept;
  517. /*!
  518. * This is an overloaded call to setMidiProgram().
  519. * It changes the current MIDI program using @a bank and @a program values instead of index.
  520. */
  521. void setMidiProgramById(const uint32_t bank, const uint32_t program, const bool sendGui, const bool sendOsc, const bool sendCallback) noexcept;
  522. // -------------------------------------------------------------------
  523. // Plugin state
  524. /*!
  525. * Reload the plugin's entire state (including programs).
  526. * The plugin will be disabled during this call.
  527. */
  528. virtual void reload() = 0;
  529. /*!
  530. * Reload the plugin's programs state.
  531. */
  532. virtual void reloadPrograms(const bool doInit);
  533. // -------------------------------------------------------------------
  534. // Plugin processing
  535. /*!
  536. * Plugin activate call.
  537. */
  538. virtual void activate() noexcept;
  539. /*!
  540. * Plugin activate call.
  541. */
  542. virtual void deactivate() noexcept;
  543. /*!
  544. * Plugin process call.
  545. */
  546. virtual void process(const float** const audioIn, float** const audioOut,
  547. const float** const cvIn, float** const cvOut, const uint32_t frames) = 0;
  548. /*!
  549. * Tell the plugin the current buffer size changed.
  550. */
  551. virtual void bufferSizeChanged(const uint32_t newBufferSize);
  552. /*!
  553. * Tell the plugin the current sample rate changed.
  554. */
  555. virtual void sampleRateChanged(const double newSampleRate);
  556. /*!
  557. * Tell the plugin the current offline mode changed.
  558. */
  559. virtual void offlineModeChanged(const bool isOffline);
  560. // -------------------------------------------------------------------
  561. // Misc
  562. /*!
  563. * Idle function (non-UI), called at regular intervals.
  564. * @note: This function is NOT called from the main thread.
  565. */
  566. virtual void idle();
  567. /*!
  568. * Try to lock the plugin's master mutex.
  569. * @param forcedOffline When true, always locks and returns true
  570. */
  571. bool tryLock(const bool forcedOffline) noexcept;
  572. /*!
  573. * Unlock the plugin's master mutex.
  574. */
  575. void unlock() noexcept;
  576. // -------------------------------------------------------------------
  577. // Plugin buffers
  578. /*!
  579. * Initialize all RT buffers of the plugin.
  580. */
  581. virtual void initBuffers() const noexcept;
  582. /*!
  583. * Delete and clear all RT buffers.
  584. */
  585. virtual void clearBuffers() noexcept;
  586. // -------------------------------------------------------------------
  587. // OSC stuff
  588. #ifndef BUILD_BRIDGE
  589. /*!
  590. * Register this plugin to the engine's OSC client (controller or bridge).
  591. * TODO
  592. */
  593. void registerToOscClient() noexcept;
  594. #endif
  595. /*!
  596. * Handle an OSC message.
  597. * FIXME
  598. */
  599. virtual void handleOscMessage(const char* const method, const int argc, const void* const argv, const char* const types, const lo_message msg);
  600. // -------------------------------------------------------------------
  601. // MIDI events
  602. /*!
  603. * Send a single midi note to be processed in the next audio callback.
  604. * A note with 0 velocity means note-off.
  605. * @note Non-RT call
  606. */
  607. void sendMidiSingleNote(const uint8_t channel, const uint8_t note, const uint8_t velo, const bool sendGui, const bool sendOsc, const bool sendCallback);
  608. #ifndef BUILD_BRIDGE
  609. /*!
  610. * Send all midi notes off to the host callback.
  611. * This doesn't send the actual MIDI All-Notes-Off event, but 128 note-offs instead (IFF ctrlChannel is valid).
  612. * @note RT call
  613. */
  614. void sendMidiAllNotesOffToCallback();
  615. #endif
  616. // -------------------------------------------------------------------
  617. // UI Stuff
  618. /*!
  619. * Show (or hide) the plugin's custom UI according to @a yesNo.
  620. * This function is always called from the main thread.
  621. */
  622. virtual void showCustomUI(const bool yesNo);
  623. /*!
  624. * UI idle function, called at regular intervals.
  625. * This function is only called from the main thread if PLUGIN_NEEDS_UI_MAIN_THREAD is set.
  626. * @note This function may sometimes be called even if the UI is not visible yet.
  627. */
  628. virtual void uiIdle();
  629. /*!
  630. * Tell the UI a parameter has changed.
  631. * @see uiIdle
  632. */
  633. virtual void uiParameterChange(const uint32_t index, const float value) noexcept;
  634. /*!
  635. * Tell the UI the current program has changed.
  636. * @see uiIdle
  637. */
  638. virtual void uiProgramChange(const uint32_t index) noexcept;
  639. /*!
  640. * Tell the UI the current midi program has changed.
  641. * @see uiIdle
  642. */
  643. virtual void uiMidiProgramChange(const uint32_t index) noexcept;
  644. /*!
  645. * Tell the UI a note has been pressed.
  646. * @see uiIdle
  647. */
  648. virtual void uiNoteOn(const uint8_t channel, const uint8_t note, const uint8_t velo) noexcept;
  649. /*!
  650. * Tell the UI a note has been released.
  651. * @see uiIdle
  652. */
  653. virtual void uiNoteOff(const uint8_t channel, const uint8_t note) noexcept;
  654. // -------------------------------------------------------------------
  655. // Helper functions
  656. /*!
  657. * Check if the plugin can run in rack mode.
  658. */
  659. bool canRunInRack() const noexcept;
  660. /*!
  661. * Get the plugin's engine, as passed in the constructor.
  662. */
  663. CarlaEngine* getEngine() const noexcept;
  664. /*!
  665. * Get the plugin's engine client.
  666. */
  667. CarlaEngineClient* getEngineClient() const noexcept;
  668. /*!
  669. * Get a plugin's audio input port.
  670. */
  671. CarlaEngineAudioPort* getAudioInPort(const uint32_t index) const noexcept;
  672. /*!
  673. * Get a plugin's audio output port.
  674. */
  675. CarlaEngineAudioPort* getAudioOutPort(const uint32_t index) const noexcept;
  676. /*!
  677. * Get a plugin's CV input port.
  678. */
  679. CarlaEngineCVPort* getCVInPort(const uint32_t index) const noexcept;
  680. /*!
  681. * Get a plugin's CV output port.
  682. */
  683. CarlaEngineCVPort* getCVOutPort(const uint32_t index) const noexcept;
  684. /*!
  685. * Get the plugin's default event input port.
  686. */
  687. CarlaEngineEventPort* getDefaultEventInPort() const noexcept;
  688. /*!
  689. * Get the plugin's default event output port.
  690. */
  691. CarlaEngineEventPort* getDefaultEventOutPort() const noexcept;
  692. /*!
  693. * Get the plugin's type native handle.
  694. * This will be LADSPA_Handle, LV2_Handle, etc.
  695. */
  696. virtual void* getNativeHandle() const noexcept;
  697. /*!
  698. * Get the plugin's type native descriptor.
  699. * This will be LADSPA_Descriptor, DSSI_Descriptor, LV2_Descriptor, AEffect, etc.
  700. */
  701. virtual const void* getNativeDescriptor() const noexcept;
  702. /*!
  703. * Get the plugin UI bridge process Id.
  704. */
  705. virtual uintptr_t getUiBridgeProcessId() const noexcept;
  706. // -------------------------------------------------------------------
  707. /*!
  708. * Get the plugin's patchbay nodeId.
  709. * @see setPatchbayNodeId()
  710. */
  711. uint32_t getPatchbayNodeId() const noexcept;
  712. /*!
  713. * Set the plugin's patchbay nodeId.
  714. * @see getPatchbayNodeId()
  715. */
  716. void setPatchbayNodeId(const uint32_t nodeId) noexcept;
  717. // -------------------------------------------------------------------
  718. // Plugin initializers
  719. /*!
  720. * Get a plugin's binary type.
  721. * This is always BINARY_NATIVE unless the plugin is a bridge.
  722. */
  723. virtual BinaryType getBinaryType() const noexcept
  724. {
  725. return BINARY_NATIVE;
  726. }
  727. /*!
  728. * Handy function required by CarlaEngine::clonePlugin().
  729. */
  730. virtual const void* getExtraStuff() const noexcept
  731. {
  732. return nullptr;
  733. }
  734. #ifndef DOXYGEN
  735. struct Initializer {
  736. CarlaEngine* const engine;
  737. const uint id;
  738. const char* const filename;
  739. const char* const name;
  740. const char* const label;
  741. const int64_t uniqueId;
  742. const uint options; // see PluginOptions
  743. };
  744. static CarlaPlugin* newNative(const Initializer& init);
  745. static CarlaPlugin* newBridge(const Initializer& init, const BinaryType btype, const PluginType ptype, const char* const bridgeBinary);
  746. static CarlaPlugin* newLADSPA(const Initializer& init, const LADSPA_RDF_Descriptor* const rdfDescriptor);
  747. static CarlaPlugin* newDSSI(const Initializer& init);
  748. static CarlaPlugin* newLV2(const Initializer& init);
  749. static CarlaPlugin* newVST2(const Initializer& init);
  750. static CarlaPlugin* newVST3(const Initializer& init);
  751. static CarlaPlugin* newAU(const Initializer& init);
  752. static CarlaPlugin* newJuce(const Initializer& init, const char* const format);
  753. static CarlaPlugin* newFluidSynth(const Initializer& init, const bool use16Outs);
  754. static CarlaPlugin* newLinuxSampler(const Initializer& init, const char* const format, const bool use16Outs);
  755. static CarlaPlugin* newFileGIG(const Initializer& init, const bool use16Outs);
  756. static CarlaPlugin* newFileSF2(const Initializer& init, const bool use16Outs);
  757. static CarlaPlugin* newFileSFZ(const Initializer& init);
  758. static CarlaPlugin* newJackApp(const Initializer& init);
  759. #endif
  760. // -------------------------------------------------------------------
  761. protected:
  762. /*!
  763. * Internal data, for CarlaPlugin subclasses only.
  764. */
  765. struct ProtectedData;
  766. ProtectedData* const pData;
  767. // -------------------------------------------------------------------
  768. // Helper classes
  769. /*!
  770. * Fully disable plugin in scope and also its engine client.
  771. * May wait-block on constructor for plugin process to end.
  772. */
  773. class ScopedDisabler
  774. {
  775. public:
  776. ScopedDisabler(CarlaPlugin* const plugin) noexcept;
  777. ~ScopedDisabler() noexcept;
  778. private:
  779. CarlaPlugin* const fPlugin;
  780. bool fWasEnabled;
  781. CARLA_PREVENT_HEAP_ALLOCATION
  782. CARLA_DECLARE_NON_COPY_CLASS(ScopedDisabler)
  783. };
  784. /*!
  785. * Lock the plugin's own run/process call.
  786. * Plugin will still work as normal, but output only silence.
  787. * On destructor needsReset flag might be set if the plugin might have missed some events.
  788. */
  789. class ScopedSingleProcessLocker
  790. {
  791. public:
  792. ScopedSingleProcessLocker(CarlaPlugin* const plugin, const bool block) noexcept;
  793. ~ScopedSingleProcessLocker() noexcept;
  794. private:
  795. CarlaPlugin* const fPlugin;
  796. const bool fBlock;
  797. CARLA_PREVENT_HEAP_ALLOCATION
  798. CARLA_DECLARE_NON_COPY_CLASS(ScopedSingleProcessLocker)
  799. };
  800. CARLA_DECLARE_NON_COPY_CLASS(CarlaPlugin)
  801. };
  802. /**@}*/
  803. // -----------------------------------------------------------------------
  804. CARLA_BACKEND_END_NAMESPACE
  805. #endif // CARLA_PLUGIN_HPP_INCLUDED