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.

CarlaHost.h 24KB

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
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
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
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981
  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_HOST_H_INCLUDED
  18. #define CARLA_HOST_H_INCLUDED
  19. #include "CarlaBackend.h"
  20. #ifdef __cplusplus
  21. using CarlaBackend::BinaryType;
  22. using CarlaBackend::PluginType;
  23. using CarlaBackend::PluginCategory;
  24. using CarlaBackend::InternalParameterIndex;
  25. using CarlaBackend::EngineCallbackOpcode;
  26. using CarlaBackend::EngineOption;
  27. using CarlaBackend::EngineProcessMode;
  28. using CarlaBackend::EngineTransportMode;
  29. using CarlaBackend::FileCallbackOpcode;
  30. using CarlaBackend::EngineCallbackFunc;
  31. using CarlaBackend::FileCallbackFunc;
  32. using CarlaBackend::ParameterData;
  33. using CarlaBackend::ParameterRanges;
  34. using CarlaBackend::MidiProgramData;
  35. using CarlaBackend::CustomData;
  36. using CarlaBackend::EngineDriverDeviceInfo;
  37. using CarlaBackend::CarlaEngine;
  38. using CarlaBackend::CarlaEngineClient;
  39. using CarlaBackend::CarlaPlugin;
  40. #endif
  41. /*!
  42. * @defgroup CarlaHostAPI Carla Host API
  43. *
  44. * The Carla Host API.
  45. *
  46. * This API makes it possible to use the Carla Backend in a standalone host application..
  47. *
  48. * None of the returned values in this API calls need to be deleted or free'd.\n
  49. * When a function fails (returns false or NULL), use carla_get_last_error() to find out what went wrong.
  50. * @{
  51. */
  52. /* ------------------------------------------------------------------------------------------------------------
  53. * Carla Host API (C stuff) */
  54. /*!
  55. * Information about a loaded plugin.
  56. * @see carla_get_plugin_info()
  57. */
  58. typedef struct _CarlaPluginInfo {
  59. /*!
  60. * Plugin type.
  61. */
  62. PluginType type;
  63. /*!
  64. * Plugin category.
  65. */
  66. PluginCategory category;
  67. /*!
  68. * Plugin hints.
  69. * @see PluginHints
  70. */
  71. uint hints;
  72. /*!
  73. * Plugin options available for the user to change.
  74. * @see PluginOptions
  75. */
  76. uint optionsAvailable;
  77. /*!
  78. * Plugin options currently enabled.\n
  79. * Some options are enabled but not available, which means they will always be on.
  80. * @see PluginOptions
  81. */
  82. uint optionsEnabled;
  83. /*!
  84. * Plugin filename.\n
  85. * This can be the plugin binary or resource file.
  86. */
  87. const char* filename;
  88. /*!
  89. * Plugin name.\n
  90. * This name is unique within a Carla instance.
  91. * @see carla_get_real_plugin_name()
  92. */
  93. const char* name;
  94. /*!
  95. * Plugin label or URI.
  96. */
  97. const char* label;
  98. /*!
  99. * Plugin author/maker.
  100. */
  101. const char* maker;
  102. /*!
  103. * Plugin copyright/license.
  104. */
  105. const char* copyright;
  106. /*!
  107. * Icon name for this plugin, in lowercase.\n
  108. * Default is "plugin".
  109. */
  110. const char* iconName;
  111. /*!
  112. * Plugin unique Id.\n
  113. * This Id is dependant on the plugin type and may sometimes be 0.
  114. */
  115. int64_t uniqueId;
  116. #ifdef __cplusplus
  117. /*!
  118. * C++ constructor and destructor.
  119. */
  120. _CarlaPluginInfo() noexcept;
  121. ~_CarlaPluginInfo() noexcept;
  122. #endif
  123. } CarlaPluginInfo;
  124. /*!
  125. * Information about an internal Carla plugin.
  126. * @see carla_get_internal_plugin_info()
  127. */
  128. typedef struct _CarlaNativePluginInfo {
  129. /*!
  130. * Plugin category.
  131. */
  132. PluginCategory category;
  133. /*!
  134. * Plugin hints.
  135. * @see PluginHints
  136. */
  137. uint hints;
  138. /*!
  139. * Number of audio inputs.
  140. */
  141. uint32_t audioIns;
  142. /*!
  143. * Number of audio outputs.
  144. */
  145. uint32_t audioOuts;
  146. /*!
  147. * Number of MIDI inputs.
  148. */
  149. uint32_t midiIns;
  150. /*!
  151. * Number of MIDI outputs.
  152. */
  153. uint32_t midiOuts;
  154. /*!
  155. * Number of input parameters.
  156. */
  157. uint32_t parameterIns;
  158. /*!
  159. * Number of output parameters.
  160. */
  161. uint32_t parameterOuts;
  162. /*!
  163. * Plugin name.
  164. */
  165. const char* name;
  166. /*!
  167. * Plugin label.
  168. */
  169. const char* label;
  170. /*!
  171. * Plugin author/maker.
  172. */
  173. const char* maker;
  174. /*!
  175. * Plugin copyright/license.
  176. */
  177. const char* copyright;
  178. #ifdef __cplusplus
  179. /*!
  180. * C++ constructor.
  181. */
  182. _CarlaNativePluginInfo() noexcept;
  183. #endif
  184. } CarlaNativePluginInfo;
  185. /*!
  186. * Port count information, used for Audio and MIDI ports and parameters.
  187. * @see carla_get_audio_port_count_info()
  188. * @see carla_get_midi_port_count_info()
  189. * @see carla_get_parameter_count_info()
  190. */
  191. typedef struct _CarlaPortCountInfo {
  192. /*!
  193. * Number of inputs.
  194. */
  195. uint32_t ins;
  196. /*!
  197. * Number of outputs.
  198. */
  199. uint32_t outs;
  200. } CarlaPortCountInfo;
  201. /*!
  202. * Parameter information.
  203. * @see carla_get_parameter_info()
  204. */
  205. typedef struct _CarlaParameterInfo {
  206. /*!
  207. * Parameter name.
  208. */
  209. const char* name;
  210. /*!
  211. * Parameter symbol.
  212. */
  213. const char* symbol;
  214. /*!
  215. * Parameter unit.
  216. */
  217. const char* unit;
  218. /*!
  219. * Number of scale points.
  220. * @see CarlaScalePointInfo
  221. */
  222. uint32_t scalePointCount;
  223. #ifdef __cplusplus
  224. /*!
  225. * C++ constructor and destructor.
  226. */
  227. _CarlaParameterInfo() noexcept;
  228. ~_CarlaParameterInfo() noexcept;
  229. #endif
  230. } CarlaParameterInfo;
  231. /*!
  232. * Parameter scale point information.
  233. * @see carla_get_parameter_scalepoint_info()
  234. */
  235. typedef struct _CarlaScalePointInfo {
  236. /*!
  237. * Scale point value.
  238. */
  239. float value;
  240. /*!
  241. * Scale point label.
  242. */
  243. const char* label;
  244. #ifdef __cplusplus
  245. /*!
  246. * C++ constructor and destructor.
  247. */
  248. _CarlaScalePointInfo() noexcept;
  249. ~_CarlaScalePointInfo() noexcept;
  250. #endif
  251. } CarlaScalePointInfo;
  252. /*!
  253. * Transport information.
  254. * @see carla_get_transport_info()
  255. */
  256. typedef struct _CarlaTransportInfo {
  257. /*!
  258. * Wherever transport is playing.
  259. */
  260. bool playing;
  261. /*!
  262. * Current transport frame.
  263. */
  264. uint64_t frame;
  265. /*!
  266. * Bar.
  267. */
  268. int32_t bar;
  269. /*!
  270. * Beat.
  271. */
  272. int32_t beat;
  273. /*!
  274. * Tick.
  275. */
  276. int32_t tick;
  277. /*!
  278. * Beats per minute.
  279. */
  280. double bpm;
  281. #ifdef __cplusplus
  282. /*!
  283. * C++ constructor.
  284. */
  285. _CarlaTransportInfo() noexcept;
  286. #endif
  287. } CarlaTransportInfo;
  288. /* ------------------------------------------------------------------------------------------------------------
  289. * Carla Host API (C functions) */
  290. /*!
  291. * Get the complete license text of used third-party code and features.\n
  292. * Returned string is in basic html format.
  293. */
  294. CARLA_EXPORT const char* carla_get_complete_license_text();
  295. /*!
  296. * Get all the supported file extensions in carla_load_file().\n
  297. * Returned string uses this syntax:
  298. * @code
  299. * "*.ext1;*.ext2;*.ext3"
  300. * @endcode
  301. */
  302. CARLA_EXPORT const char* carla_get_supported_file_extensions();
  303. /*!
  304. * Get how many engine drivers are available.
  305. */
  306. CARLA_EXPORT uint carla_get_engine_driver_count();
  307. /*!
  308. * Get an engine driver name.
  309. * @param index Driver index
  310. */
  311. CARLA_EXPORT const char* carla_get_engine_driver_name(uint index);
  312. /*!
  313. * Get the device names of an engine driver.
  314. * @param index Driver index
  315. */
  316. CARLA_EXPORT const char* const* carla_get_engine_driver_device_names(uint index);
  317. /*!
  318. * Get information about a device driver.
  319. * @param index Driver index
  320. * @param name Device name
  321. */
  322. CARLA_EXPORT const EngineDriverDeviceInfo* carla_get_engine_driver_device_info(uint index, const char* name);
  323. /*!
  324. * Get how many internal plugins are available.
  325. */
  326. CARLA_EXPORT uint carla_get_internal_plugin_count();
  327. /*!
  328. * Get information about an internal plugin.
  329. * @param index Internal plugin Id
  330. */
  331. CARLA_EXPORT const CarlaNativePluginInfo* carla_get_internal_plugin_info(uint index);
  332. #ifdef __cplusplus
  333. /*!
  334. * Get the currently used engine, maybe be NULL.
  335. * @note C++ only
  336. */
  337. CARLA_EXPORT const CarlaEngine* carla_get_engine();
  338. #endif
  339. /*!
  340. * Initialize the engine.\n
  341. * Make sure to call carla_engine_idle() at regular intervals afterwards.
  342. * @param driverName Driver to use
  343. * @param clientName Engine master client name
  344. */
  345. CARLA_EXPORT bool carla_engine_init(const char* driverName, const char* clientName);
  346. #ifdef BUILD_BRIDGE
  347. /*!
  348. * Initialize the engine in bridged mode.
  349. * @param audioBaseName Shared memory key for audio pool
  350. * @param controlBaseName Shared memory key for control messages
  351. * @param timeBaseName Shared memory key for time info
  352. * @param clientName Engine master client name
  353. */
  354. CARLA_EXPORT bool carla_engine_init_bridge(const char audioBaseName[6+1], const char controlBaseName[6+1], const char timeBaseName[6+1], const char* clientName);
  355. #endif
  356. /*!
  357. * Close the engine.\n
  358. * This function always closes the engine even if it returns false.\n
  359. * In other words, even when something goes wrong when closing the engine it still be closed nonetheless.
  360. */
  361. CARLA_EXPORT bool carla_engine_close();
  362. /*!
  363. * Idle the engine.\n
  364. * Do not call this if the engine is not running.
  365. */
  366. CARLA_EXPORT void carla_engine_idle();
  367. /*!
  368. * Check if the engine is running.
  369. */
  370. CARLA_EXPORT bool carla_is_engine_running();
  371. /*!
  372. * Tell the engine it's about to close.\n
  373. * This is used to prevent the engine thread(s) from reactivating.
  374. */
  375. CARLA_EXPORT void carla_set_engine_about_to_close();
  376. /*!
  377. * Set the engine callback function.
  378. * @param func Callback function
  379. * @param ptr Callback pointer
  380. */
  381. CARLA_EXPORT void carla_set_engine_callback(EngineCallbackFunc func, void* ptr);
  382. #ifndef BUILD_BRIDGE
  383. /*!
  384. * Set an engine option.
  385. * @param option Option
  386. * @param value Value as number
  387. * @param valueStr Value as string
  388. */
  389. CARLA_EXPORT void carla_set_engine_option(EngineOption option, int value, const char* valueStr);
  390. #endif
  391. /*!
  392. * Set the file callback function.
  393. * @param func Callback function
  394. * @param ptr Callback pointer
  395. */
  396. CARLA_EXPORT void carla_set_file_callback(FileCallbackFunc func, void* ptr);
  397. /*!
  398. * Load a file of any type.\n
  399. * This will try to load a generic file as a plugin,
  400. * either by direct handling (Csound, GIG, SF2 and SFZ) or by using an internal plugin (like Audio and MIDI).
  401. * @param Filename Filename
  402. * @see carla_get_supported_file_extensions()
  403. */
  404. CARLA_EXPORT bool carla_load_file(const char* filename);
  405. /*!
  406. * Load a Carla project file.
  407. * @param Filename Filename
  408. * @note Currently loaded plugins are not removed; call carla_remove_all_plugins() first if needed.
  409. */
  410. CARLA_EXPORT bool carla_load_project(const char* filename);
  411. /*!
  412. * Save current project to a file.
  413. * @param Filename Filename
  414. */
  415. CARLA_EXPORT bool carla_save_project(const char* filename);
  416. #ifndef BUILD_BRIDGE
  417. /*!
  418. * Connect two patchbay ports.
  419. * @param groupIdA Output group
  420. * @param portIdA Output port
  421. * @param groupIdB Input group
  422. * @param portIdB Input port
  423. * @see ENGINE_CALLBACK_PATCHBAY_CONNECTION_ADDED
  424. */
  425. CARLA_EXPORT bool carla_patchbay_connect(int groupIdA, int portIdA, int groupIdB, int portIdB);
  426. /*!
  427. * Disconnect two patchbay ports.
  428. * @param connectionId Connection Id
  429. * @see ENGINE_CALLBACK_PATCHBAY_CONNECTION_REMOVED
  430. */
  431. CARLA_EXPORT bool carla_patchbay_disconnect(uint connectionId);
  432. /*!
  433. * Force the engine to resend all patchbay clients, ports and connections again.
  434. */
  435. CARLA_EXPORT bool carla_patchbay_refresh();
  436. #endif
  437. /*!
  438. * Start playback of the engine transport.
  439. */
  440. CARLA_EXPORT void carla_transport_play();
  441. /*!
  442. * Pause the engine transport.
  443. */
  444. CARLA_EXPORT void carla_transport_pause();
  445. /*!
  446. * Relocate the engine transport to a specific frame.
  447. * @param frames Frame to relocate to.
  448. */
  449. CARLA_EXPORT void carla_transport_relocate(uint64_t frame);
  450. /*!
  451. * Get the current transport frame.
  452. */
  453. CARLA_EXPORT uint64_t carla_get_current_transport_frame();
  454. /*!
  455. * Get the engine transport information.
  456. */
  457. CARLA_EXPORT const CarlaTransportInfo* carla_get_transport_info();
  458. /*!
  459. * Add a new plugin.\n
  460. * If you don't know the binary type use the BINARY_NATIVE macro.
  461. * @param btype Binary type
  462. * @param ptype Plugin type
  463. * @param filename Filename, if applicable
  464. * @param name Name of the plugin, can be NULL
  465. * @param label Plugin label, if applicable
  466. * @param uniqueId Plugin unique Id, if applicable
  467. * @param extraPtr Extra pointer, defined per plugin type
  468. */
  469. CARLA_EXPORT bool carla_add_plugin(BinaryType btype, PluginType ptype, const char* filename, const char* name, const char* label, int64_t uniqueId, const void* extraPtr);
  470. /*!
  471. * Remove one plugin.
  472. * @param pluginId Plugin to remove.
  473. */
  474. CARLA_EXPORT bool carla_remove_plugin(uint pluginId);
  475. /*!
  476. * Remove all plugins.
  477. */
  478. CARLA_EXPORT bool carla_remove_all_plugins();
  479. /*!
  480. * Rename a plugin.\n
  481. * Returns the new name, or NULL if the operation failed.
  482. * @param pluginId Plugin to rename
  483. * @param newName New plugin name
  484. */
  485. CARLA_EXPORT const char* carla_rename_plugin(uint pluginId, const char* newName);
  486. /*!
  487. * Clone a plugin.
  488. * @param pluginId Plugin to clone
  489. */
  490. CARLA_EXPORT bool carla_clone_plugin(uint pluginId);
  491. /*!
  492. * Prepare replace of a plugin.\n
  493. * The next call to carla_add_plugin() will use this id, replacing the current plugin.
  494. * @param pluginId Plugin to replace
  495. * @note This function requires carla_add_plugin() to be called afterwards *as soon as possible*.
  496. */
  497. CARLA_EXPORT bool carla_replace_plugin(uint pluginId);
  498. /*!
  499. * Switch two plugins positions.
  500. * @param pluginIdA Plugin A
  501. * @param pluginIdB Plugin B
  502. */
  503. CARLA_EXPORT bool carla_switch_plugins(uint pluginIdA, uint pluginIdB);
  504. /*!
  505. * Load a plugin state.
  506. * @param pluginId Plugin
  507. * @param filename Path to plugin state
  508. * @see carla_save_plugin_state()
  509. */
  510. CARLA_EXPORT bool carla_load_plugin_state(uint pluginId, const char* filename);
  511. /*!
  512. * Save a plugin state.
  513. * @param pluginId Plugin
  514. * @param filename Path to plugin state
  515. * @see carla_load_plugin_state()
  516. */
  517. CARLA_EXPORT bool carla_save_plugin_state(uint pluginId, const char* filename);
  518. /*!
  519. * Get information from a plugin.
  520. * @param pluginId Plugin
  521. */
  522. CARLA_EXPORT const CarlaPluginInfo* carla_get_plugin_info(uint pluginId);
  523. /*!
  524. * Get audio port count information from a plugin.
  525. * @param pluginId Plugin
  526. */
  527. CARLA_EXPORT const CarlaPortCountInfo* carla_get_audio_port_count_info(uint pluginId);
  528. /*!
  529. * Get MIDI port count information from a plugin.
  530. * @param pluginId Plugin
  531. */
  532. CARLA_EXPORT const CarlaPortCountInfo* carla_get_midi_port_count_info(uint pluginId);
  533. /*!
  534. * Get parameter count information from a plugin.
  535. * @param pluginId Plugin
  536. */
  537. CARLA_EXPORT const CarlaPortCountInfo* carla_get_parameter_count_info(uint pluginId);
  538. /*!
  539. * Get parameter information from a plugin.
  540. * @param pluginId Plugin
  541. * @param parameterId Parameter index
  542. * @see carla_get_parameter_count()
  543. */
  544. CARLA_EXPORT const CarlaParameterInfo* carla_get_parameter_info(uint pluginId, uint32_t parameterId);
  545. /*!
  546. * Get parameter scale point information from a plugin.
  547. * @param pluginId Plugin
  548. * @param parameterId Parameter index
  549. * @param scalePointId Parameter scale-point index
  550. * @see CarlaParameterInfo::scalePointCount
  551. */
  552. CARLA_EXPORT const CarlaScalePointInfo* carla_get_parameter_scalepoint_info(uint pluginId, uint32_t parameterId, uint32_t scalePointId);
  553. /*!
  554. * Get a plugin's parameter data.
  555. * @param pluginId Plugin
  556. * @param parameterId Parameter index
  557. * @see carla_get_parameter_count()
  558. */
  559. CARLA_EXPORT const ParameterData* carla_get_parameter_data(uint pluginId, uint32_t parameterId);
  560. /*!
  561. * Get a plugin's parameter ranges.
  562. * @param pluginId Plugin
  563. * @param parameterId Parameter index
  564. * @see carla_get_parameter_count()
  565. */
  566. CARLA_EXPORT const ParameterRanges* carla_get_parameter_ranges(uint pluginId, uint32_t parameterId);
  567. /*!
  568. * Get a plugin's MIDI program data.
  569. * @param pluginId Plugin
  570. * @param midiProgramId MIDI Program index
  571. * @see carla_get_midi_program_count()
  572. */
  573. CARLA_EXPORT const MidiProgramData* carla_get_midi_program_data(uint pluginId, uint32_t midiProgramId);
  574. /*!
  575. * Get a plugin's custom data.
  576. * @param pluginId Plugin
  577. * @param customDataId Custom data index
  578. * @see carla_get_custom_data_count()
  579. */
  580. CARLA_EXPORT const CustomData* carla_get_custom_data(uint pluginId, uint32_t customDataId);
  581. /*!
  582. * Get a plugin's chunk data.
  583. * @param pluginId Plugin
  584. * @see PLUGIN_OPTION_USE_CHUNKS and carla_set_chunk_data()
  585. */
  586. CARLA_EXPORT const char* carla_get_chunk_data(uint pluginId);
  587. /*!
  588. * Get how many parameters a plugin has.
  589. * @param pluginId Plugin
  590. */
  591. CARLA_EXPORT uint32_t carla_get_parameter_count(uint pluginId);
  592. /*!
  593. * Get how many programs a plugin has.
  594. * @param pluginId Plugin
  595. * @see carla_get_program_name()
  596. */
  597. CARLA_EXPORT uint32_t carla_get_program_count(uint pluginId);
  598. /*!
  599. * Get how many MIDI programs a plugin has.
  600. * @param pluginId Plugin
  601. * @see carla_get_midi_program_name() and carla_get_midi_program_data()
  602. */
  603. CARLA_EXPORT uint32_t carla_get_midi_program_count(uint pluginId);
  604. /*!
  605. * Get how many custom data sets a plugin has.
  606. * @param pluginId Plugin
  607. * @see carla_get_custom_data()
  608. */
  609. CARLA_EXPORT uint32_t carla_get_custom_data_count(uint pluginId);
  610. /*!
  611. * Get a plugin's parameter text (custom display of internal values).
  612. * @param pluginId Plugin
  613. * @param parameterId Parameter index
  614. * @see PARAMETER_USES_CUSTOM_TEXT
  615. */
  616. CARLA_EXPORT const char* carla_get_parameter_text(uint pluginId, uint32_t parameterId);
  617. /*!
  618. * Get a plugin's program name.
  619. * @param pluginId Plugin
  620. * @param programId Program index
  621. * @see carla_get_program_count()
  622. */
  623. CARLA_EXPORT const char* carla_get_program_name(uint pluginId, uint32_t programId);
  624. /*!
  625. * Get a plugin's MIDI program name.
  626. * @param pluginId Plugin
  627. * @param midiProgramId MIDI Program index
  628. * @see carla_get_midi_program_count()
  629. */
  630. CARLA_EXPORT const char* carla_get_midi_program_name(uint pluginId, uint32_t midiProgramId);
  631. /*!
  632. * Get a plugin's real name.\n
  633. * This is the name the plugin uses to identify itself; may not be unique.
  634. * @param pluginId Plugin
  635. */
  636. CARLA_EXPORT const char* carla_get_real_plugin_name(uint pluginId);
  637. /*!
  638. * Get a plugin's program index.
  639. * @param pluginId Plugin
  640. */
  641. CARLA_EXPORT int32_t carla_get_current_program_index(uint pluginId);
  642. /*!
  643. * Get a plugin's midi program index.
  644. * @param pluginId Plugin
  645. */
  646. CARLA_EXPORT int32_t carla_get_current_midi_program_index(uint pluginId);
  647. /*!
  648. * Get a plugin's default parameter value.
  649. * @param pluginId Plugin
  650. * @param parameterId Parameter index
  651. */
  652. CARLA_EXPORT float carla_get_default_parameter_value(uint pluginId, uint32_t parameterId);
  653. /*!
  654. * Get a plugin's current parameter value.
  655. * @param pluginId Plugin
  656. * @param parameterId Parameter index
  657. */
  658. CARLA_EXPORT float carla_get_current_parameter_value(uint pluginId, uint32_t parameterId);
  659. /*!
  660. * Get a plugin's internal parameter value.
  661. * @param pluginId Plugin
  662. * @param parameterId Parameter index, maybe be negative
  663. * @see InternalParameterIndex
  664. */
  665. CARLA_EXPORT float carla_get_internal_parameter_value(uint pluginId, int32_t parameterId);
  666. /*!
  667. * Get a plugin's input peak value.
  668. * @param pluginId Plugin
  669. * @param isLeft Wherever to get the left/mono value, otherwise right.
  670. */
  671. CARLA_EXPORT float carla_get_input_peak_value(uint pluginId, bool isLeft);
  672. /*!
  673. * Get a plugin's output peak value.
  674. * @param pluginId Plugin
  675. * @param isLeft Wherever to get the left/mono value, otherwise right.
  676. */
  677. CARLA_EXPORT float carla_get_output_peak_value(uint pluginId, bool isLeft);
  678. /*!
  679. * Enable a plugin's option.
  680. * @param pluginId Plugin
  681. * @param option An option from PluginOptions
  682. * @param yesNo New enabled state
  683. */
  684. CARLA_EXPORT void carla_set_option(uint pluginId, uint option, bool yesNo);
  685. /*!
  686. * Enable or disable a plugin.
  687. * @param pluginId Plugin
  688. * @param onOff New active state
  689. */
  690. CARLA_EXPORT void carla_set_active(uint pluginId, bool onOff);
  691. #ifndef BUILD_BRIDGE
  692. /*!
  693. * Change a plugin's internal dry/wet.
  694. * @param pluginId Plugin
  695. * @param value New dry/wet value
  696. */
  697. CARLA_EXPORT void carla_set_drywet(uint pluginId, float value);
  698. /*!
  699. * Change a plugin's internal volume.
  700. * @param pluginId Plugin
  701. * @param value New volume
  702. */
  703. CARLA_EXPORT void carla_set_volume(uint pluginId, float value);
  704. /*!
  705. * Change a plugin's internal stereo balance, left channel.
  706. * @param pluginId Plugin
  707. * @param value New value
  708. */
  709. CARLA_EXPORT void carla_set_balance_left(uint pluginId, float value);
  710. /*!
  711. * Change a plugin's internal stereo balance, right channel.
  712. * @param pluginId Plugin
  713. * @param value New value
  714. */
  715. CARLA_EXPORT void carla_set_balance_right(uint pluginId, float value);
  716. /*!
  717. * Change a plugin's internal mono panning value.
  718. * @param pluginId Plugin
  719. * @param value New value
  720. */
  721. CARLA_EXPORT void carla_set_panning(uint pluginId, float value);
  722. #endif
  723. /*!
  724. * Change a plugin's internal control channel.
  725. * @param pluginId Plugin
  726. * @param channel New channel
  727. */
  728. CARLA_EXPORT void carla_set_ctrl_channel(uint pluginId, int8_t channel);
  729. /*!
  730. * Change a plugin's parameter value.
  731. * @param pluginId Plugin
  732. * @param parameterId Parameter index
  733. * @param value New value
  734. */
  735. CARLA_EXPORT void carla_set_parameter_value(uint pluginId, uint32_t parameterId, float value);
  736. #ifndef BUILD_BRIDGE
  737. /*!
  738. * Change a plugin's parameter MIDI channel.
  739. * @param pluginId Plugin
  740. * @param parameterId Parameter index
  741. * @param channel New MIDI channel
  742. */
  743. CARLA_EXPORT void carla_set_parameter_midi_channel(uint pluginId, uint32_t parameterId, uint8_t channel);
  744. /*!
  745. * Change a plugin's parameter MIDI cc.
  746. * @param pluginId Plugin
  747. * @param parameterId Parameter index
  748. * @param cc New MIDI cc
  749. */
  750. CARLA_EXPORT void carla_set_parameter_midi_cc(uint pluginId, uint32_t parameterId, int16_t cc);
  751. #endif
  752. /*!
  753. * Change a plugin's current program.
  754. * @param pluginId Plugin
  755. * @param programId New program
  756. */
  757. CARLA_EXPORT void carla_set_program(uint pluginId, uint32_t programId);
  758. /*!
  759. * Change a plugin's current MIDI program.
  760. * @param pluginId Plugin
  761. * @param midiProgramId New value
  762. */
  763. CARLA_EXPORT void carla_set_midi_program(uint pluginId, uint32_t midiProgramId);
  764. /*!
  765. * Set a plugin's custom data set.
  766. * @param pluginId Plugin
  767. * @param type Type
  768. * @param key Key
  769. * @param value New value
  770. * @see CustomDataTypes and CustomDataKeys
  771. */
  772. CARLA_EXPORT void carla_set_custom_data(uint pluginId, const char* type, const char* key, const char* value);
  773. /*!
  774. * Set a plugin's chunk data.
  775. * @param pluginId Plugin
  776. * @param value New value
  777. * @see PLUGIN_OPTION_USE_CHUNKS and carla_get_chunk_data()
  778. */
  779. CARLA_EXPORT void carla_set_chunk_data(uint pluginId, const char* chunkData);
  780. /*!
  781. * Tell a plugin to prepare for save.\n
  782. * This should be called before saving custom data sets.
  783. * @param pluginId Plugin
  784. */
  785. CARLA_EXPORT void carla_prepare_for_save(uint pluginId);
  786. /*!
  787. * Reset all plugin's parameters.
  788. * @param pluginId Plugin
  789. */
  790. CARLA_EXPORT void carla_reset_parameters(uint pluginId);
  791. /*!
  792. * Randomize all plugin's parameters.
  793. * @param pluginId Plugin
  794. */
  795. CARLA_EXPORT void carla_randomize_parameters(uint pluginId);
  796. #ifndef BUILD_BRIDGE
  797. /*!
  798. * Send a single note of a plugin.\n
  799. * If velocity is 0, note-off is sent; note-on otherwise.
  800. * @param pluginId Plugin
  801. * @param channel Note channel
  802. * @param note Note pitch
  803. * @param velocity Note velocity
  804. */
  805. CARLA_EXPORT void carla_send_midi_note(uint pluginId, uint8_t channel, uint8_t note, uint8_t velocity);
  806. #endif
  807. /*!
  808. * Tell a plugin to show its own custom UI.
  809. * @param pluginId Plugin
  810. * @param yesNo New UI state, visible or not
  811. * @see PLUGIN_HAS_CUSTOM_UI
  812. */
  813. CARLA_EXPORT void carla_show_custom_ui(uint pluginId, bool yesNo);
  814. /*!
  815. * Get the current engine buffer size.
  816. */
  817. CARLA_EXPORT uint32_t carla_get_buffer_size();
  818. /*!
  819. * Get the current engine sample rate.
  820. */
  821. CARLA_EXPORT double carla_get_sample_rate();
  822. /*!
  823. * Get the last error.
  824. */
  825. CARLA_EXPORT const char* carla_get_last_error();
  826. /*!
  827. * Get the current engine OSC URL (TCP).
  828. */
  829. CARLA_EXPORT const char* carla_get_host_osc_url_tcp();
  830. /*!
  831. * Get the current engine OSC URL (UDP).
  832. */
  833. CARLA_EXPORT const char* carla_get_host_osc_url_udp();
  834. /** @} */
  835. #endif /* CARLA_HOST_H_INCLUDED */