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 34KB

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
6 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
10 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206
  1. /*
  2. * Carla Plugin Host
  3. * Copyright (C) 2011-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. #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::NsmCallbackOpcode;
  27. using CarlaBackend::EngineOption;
  28. using CarlaBackend::EngineProcessMode;
  29. using CarlaBackend::EngineTransportMode;
  30. using CarlaBackend::FileCallbackOpcode;
  31. using CarlaBackend::EngineCallbackFunc;
  32. using CarlaBackend::FileCallbackFunc;
  33. using CarlaBackend::ParameterData;
  34. using CarlaBackend::ParameterRanges;
  35. using CarlaBackend::MidiProgramData;
  36. using CarlaBackend::CustomData;
  37. using CarlaBackend::EngineDriverDeviceInfo;
  38. using CarlaBackend::CarlaEngine;
  39. using CarlaBackend::CarlaEngineClient;
  40. using CarlaBackend::CarlaPlugin;
  41. #endif
  42. /*!
  43. * @defgroup CarlaHostAPI Carla Host API
  44. *
  45. * The Carla Host API.
  46. *
  47. * This API makes it possible to use the Carla Backend in a standalone host application..
  48. *
  49. * None of the returned values in this API calls need to be deleted or free'd.
  50. * When a function fails (returns false or NULL), use carla_get_last_error() to find out what went wrong.
  51. * @{
  52. */
  53. /* ------------------------------------------------------------------------------------------------------------
  54. * Carla Host API (C stuff) */
  55. /*!
  56. * Information about a loaded plugin.
  57. * @see carla_get_plugin_info()
  58. */
  59. typedef struct _CarlaPluginInfo {
  60. /*!
  61. * Plugin type.
  62. */
  63. PluginType type;
  64. /*!
  65. * Plugin category.
  66. */
  67. PluginCategory category;
  68. /*!
  69. * Plugin hints.
  70. * @see PluginHints
  71. */
  72. uint hints;
  73. /*!
  74. * Plugin options available for the user to change.
  75. * @see PluginOptions
  76. */
  77. uint optionsAvailable;
  78. /*!
  79. * Plugin options currently enabled.
  80. * Some options are enabled but not available, which means they will always be on.
  81. * @see PluginOptions
  82. */
  83. uint optionsEnabled;
  84. /*!
  85. * Plugin filename.
  86. * This can be the plugin binary or resource file.
  87. */
  88. const char* filename;
  89. /*!
  90. * Plugin name.
  91. * This name is unique within a Carla instance.
  92. * @see carla_get_real_plugin_name()
  93. */
  94. const char* name;
  95. /*!
  96. * Plugin label or URI.
  97. */
  98. const char* label;
  99. /*!
  100. * Plugin author/maker.
  101. */
  102. const char* maker;
  103. /*!
  104. * Plugin copyright/license.
  105. */
  106. const char* copyright;
  107. /*!
  108. * Icon name for this plugin, in lowercase.
  109. * Default is "plugin".
  110. */
  111. const char* iconName;
  112. /*!
  113. * Plugin unique Id.
  114. * This Id is dependent on the plugin type and may sometimes be 0.
  115. */
  116. int64_t uniqueId;
  117. #ifdef __cplusplus
  118. /*!
  119. * C++ constructor and destructor.
  120. */
  121. CARLA_API _CarlaPluginInfo() noexcept;
  122. CARLA_API ~_CarlaPluginInfo() noexcept;
  123. CARLA_DECLARE_NON_COPY_STRUCT(_CarlaPluginInfo)
  124. #endif
  125. } CarlaPluginInfo;
  126. /*!
  127. * Port count information, used for Audio and MIDI ports and parameters.
  128. * @see carla_get_audio_port_count_info()
  129. * @see carla_get_midi_port_count_info()
  130. * @see carla_get_parameter_count_info()
  131. */
  132. typedef struct _CarlaPortCountInfo {
  133. /*!
  134. * Number of inputs.
  135. */
  136. uint32_t ins;
  137. /*!
  138. * Number of outputs.
  139. */
  140. uint32_t outs;
  141. } CarlaPortCountInfo;
  142. /*!
  143. * Parameter information.
  144. * @see carla_get_parameter_info()
  145. */
  146. typedef struct _CarlaParameterInfo {
  147. /*!
  148. * Parameter name.
  149. */
  150. const char* name;
  151. /*!
  152. * Parameter symbol.
  153. */
  154. const char* symbol;
  155. /*!
  156. * Parameter unit.
  157. */
  158. const char* unit;
  159. /*!
  160. * Parameter comment / documentation.
  161. */
  162. const char* comment;
  163. /*!
  164. * Parameter group name, prefixed by a unique symbol and ":".
  165. */
  166. const char* groupName;
  167. /*!
  168. * Number of scale points.
  169. * @see CarlaScalePointInfo
  170. */
  171. uint32_t scalePointCount;
  172. #ifdef __cplusplus
  173. /*!
  174. * C++ constructor and destructor.
  175. */
  176. CARLA_API _CarlaParameterInfo() noexcept;
  177. CARLA_API ~_CarlaParameterInfo() noexcept;
  178. CARLA_DECLARE_NON_COPY_STRUCT(_CarlaParameterInfo)
  179. #endif
  180. } CarlaParameterInfo;
  181. /*!
  182. * Parameter scale point information.
  183. * @see carla_get_parameter_scalepoint_info()
  184. */
  185. typedef struct _CarlaScalePointInfo {
  186. /*!
  187. * Scale point value.
  188. */
  189. float value;
  190. /*!
  191. * Scale point label.
  192. */
  193. const char* label;
  194. #ifdef __cplusplus
  195. /*!
  196. * C++ constructor and destructor.
  197. */
  198. CARLA_API _CarlaScalePointInfo() noexcept;
  199. CARLA_API ~_CarlaScalePointInfo() noexcept;
  200. CARLA_DECLARE_NON_COPY_STRUCT(_CarlaScalePointInfo)
  201. #endif
  202. } CarlaScalePointInfo;
  203. /*!
  204. * Transport information.
  205. * @see carla_get_transport_info()
  206. */
  207. typedef struct _CarlaTransportInfo {
  208. /*!
  209. * Wherever transport is playing.
  210. */
  211. bool playing;
  212. /*!
  213. * Current transport frame.
  214. */
  215. uint64_t frame;
  216. /*!
  217. * Bar.
  218. */
  219. int32_t bar;
  220. /*!
  221. * Beat.
  222. */
  223. int32_t beat;
  224. /*!
  225. * Tick.
  226. */
  227. int32_t tick;
  228. /*!
  229. * Beats per minute.
  230. */
  231. double bpm;
  232. #ifdef __cplusplus
  233. /*!
  234. * C++ constructor.
  235. */
  236. CARLA_API _CarlaTransportInfo() noexcept;
  237. /*!
  238. * Clear struct contents.
  239. */
  240. CARLA_API void clear() noexcept;
  241. #endif
  242. } CarlaTransportInfo;
  243. /*!
  244. * Runtime engine information.
  245. */
  246. typedef struct _CarlaRuntimeEngineInfo {
  247. /*!
  248. * DSP load.
  249. */
  250. float load;
  251. /*!
  252. * Number of xruns.
  253. */
  254. uint32_t xruns;
  255. } CarlaRuntimeEngineInfo;
  256. /*!
  257. * Runtime engine driver device information.
  258. */
  259. typedef struct {
  260. /*!
  261. * Name of the driver device.
  262. */
  263. const char* name;
  264. /*!
  265. * This driver device hints.
  266. * @see EngineDriverHints
  267. */
  268. uint hints;
  269. /*!
  270. * Current buffer size.
  271. */
  272. uint bufferSize;
  273. /*!
  274. * Available buffer sizes.
  275. * Terminated with 0.
  276. */
  277. const uint32_t* bufferSizes;
  278. /*!
  279. * Current sample rate.
  280. */
  281. double sampleRate;
  282. /*!
  283. * Available sample rates.
  284. * Terminated with 0.0.
  285. */
  286. const double* sampleRates;
  287. } CarlaRuntimeEngineDriverDeviceInfo;
  288. /*!
  289. * Image data for LV2 inline display API.
  290. * raw image pixmap format is ARGB32,
  291. */
  292. typedef struct {
  293. unsigned char* data;
  294. int width;
  295. int height;
  296. int stride;
  297. } CarlaInlineDisplayImageSurface;
  298. /*! Opaque data type for CarlaHost API calls */
  299. typedef struct _CarlaHostHandle* CarlaHostHandle;
  300. /* ------------------------------------------------------------------------------------------------------------
  301. * Carla Host API (C functions) */
  302. /*!
  303. * Get how many engine drivers are available.
  304. */
  305. CARLA_EXPORT uint carla_get_engine_driver_count(void);
  306. /*!
  307. * Get an engine driver name.
  308. * @param index Driver index
  309. */
  310. CARLA_EXPORT const char* carla_get_engine_driver_name(uint index);
  311. /*!
  312. * Get the device names of an engine driver.
  313. * @param index Driver index
  314. */
  315. CARLA_EXPORT const char* const* carla_get_engine_driver_device_names(uint index);
  316. /*!
  317. * Get information about a device driver.
  318. * @param index Driver index
  319. * @param name Device name
  320. */
  321. CARLA_EXPORT const EngineDriverDeviceInfo* carla_get_engine_driver_device_info(uint index, const char* name);
  322. /*!
  323. * Show a device custom control panel.
  324. * @see ENGINE_DRIVER_DEVICE_HAS_CONTROL_PANEL
  325. * @param index Driver index
  326. * @param name Device name
  327. */
  328. CARLA_EXPORT bool carla_show_engine_driver_device_control_panel(uint index, const char* name);
  329. /*!
  330. * Create a global host handle for standalone application usage.
  331. */
  332. CARLA_EXPORT CarlaHostHandle carla_standalone_host_init(void);
  333. #ifdef __cplusplus
  334. /*!
  335. * Get the currently used engine, may be NULL.
  336. * @note C++ only
  337. */
  338. CARLA_EXPORT CarlaEngine* carla_get_engine_from_handle(CarlaHostHandle handle);
  339. #endif
  340. /*!
  341. * Initialize the engine.
  342. * Make sure to call carla_engine_idle() at regular intervals afterwards.
  343. * @param driverName Driver to use
  344. * @param clientName Engine master client name
  345. */
  346. CARLA_EXPORT bool carla_engine_init(CarlaHostHandle handle, const char* driverName, const char* clientName);
  347. #ifdef BUILD_BRIDGE
  348. /*!
  349. * Initialize the engine in bridged mode.
  350. */
  351. CARLA_EXPORT bool carla_engine_init_bridge(CarlaHostHandle handle,
  352. const char audioBaseName[6+1],
  353. const char rtClientBaseName[6+1],
  354. const char nonRtClientBaseName[6+1],
  355. const char nonRtServerBaseName[6+1],
  356. const char* clientName);
  357. #endif
  358. /*!
  359. * Close the engine.
  360. * This function always closes the engine even if it returns false.
  361. * In other words, even when something goes wrong when closing the engine it still be closed nonetheless.
  362. */
  363. CARLA_EXPORT bool carla_engine_close(CarlaHostHandle handle);
  364. /*!
  365. * Idle the engine.
  366. * Do not call this if the engine is not running.
  367. */
  368. CARLA_EXPORT void carla_engine_idle(CarlaHostHandle handle);
  369. /*!
  370. * Check if the engine is running.
  371. */
  372. CARLA_EXPORT bool carla_is_engine_running(CarlaHostHandle handle);
  373. /*!
  374. * Get information about the currently running engine.
  375. */
  376. CARLA_EXPORT const CarlaRuntimeEngineInfo* carla_get_runtime_engine_info(CarlaHostHandle handle);
  377. #ifndef BUILD_BRIDGE
  378. /*!
  379. * Get information about the currently running engine driver device.
  380. */
  381. CARLA_EXPORT const CarlaRuntimeEngineDriverDeviceInfo* carla_get_runtime_engine_driver_device_info(CarlaHostHandle handle);
  382. /*!
  383. * Dynamically change buffer size and/or sample rate while engine is running.
  384. * @see ENGINE_DRIVER_DEVICE_VARIABLE_BUFFER_SIZE
  385. * @see ENGINE_DRIVER_DEVICE_VARIABLE_SAMPLE_RATE
  386. */
  387. CARLA_EXPORT bool carla_set_engine_buffer_size_and_sample_rate(CarlaHostHandle handle, uint bufferSize, double sampleRate);
  388. /*!
  389. * Show the custom control panel for the current engine device.
  390. * @see ENGINE_DRIVER_DEVICE_HAS_CONTROL_PANEL
  391. */
  392. CARLA_EXPORT bool carla_show_engine_device_control_panel(CarlaHostHandle handle);
  393. #endif
  394. /*!
  395. * Clear the xrun count on the engine, so that the next time carla_get_runtime_engine_info() is called, it returns 0.
  396. */
  397. CARLA_EXPORT void carla_clear_engine_xruns(CarlaHostHandle handle);
  398. /*!
  399. * Tell the engine to stop the current cancelable action.
  400. * @see ENGINE_CALLBACK_CANCELABLE_ACTION
  401. */
  402. CARLA_EXPORT void carla_cancel_engine_action(CarlaHostHandle handle);
  403. /*!
  404. * Tell the engine it's about to close.
  405. * This is used to prevent the engine thread(s) from reactivating.
  406. * Returns true if there's no pending engine events.
  407. */
  408. CARLA_EXPORT bool carla_set_engine_about_to_close(CarlaHostHandle handle);
  409. /*!
  410. * Set the engine callback function.
  411. * @param func Callback function
  412. * @param ptr Callback pointer
  413. */
  414. CARLA_EXPORT void carla_set_engine_callback(CarlaHostHandle handle, EngineCallbackFunc func, void* ptr);
  415. /*!
  416. * Set an engine option.
  417. * @param option Option
  418. * @param value Value as number
  419. * @param valueStr Value as string
  420. */
  421. CARLA_EXPORT void carla_set_engine_option(CarlaHostHandle handle, EngineOption option, int value, const char* valueStr);
  422. /*!
  423. * Set the file callback function.
  424. * @param func Callback function
  425. * @param ptr Callback pointer
  426. */
  427. CARLA_EXPORT void carla_set_file_callback(CarlaHostHandle handle, FileCallbackFunc func, void* ptr);
  428. /*!
  429. * Load a file of any type.
  430. * This will try to load a generic file as a plugin,
  431. * either by direct handling (SF2 and SFZ) or by using an internal plugin (like Audio and MIDI).
  432. * @see carla_get_supported_file_extensions()
  433. */
  434. CARLA_EXPORT bool carla_load_file(CarlaHostHandle handle, const char* filename);
  435. /*!
  436. * Load a Carla project file.
  437. * @note Currently loaded plugins are not removed; call carla_remove_all_plugins() first if needed.
  438. */
  439. CARLA_EXPORT bool carla_load_project(CarlaHostHandle handle, const char* filename);
  440. /*!
  441. * Save current project to a file.
  442. */
  443. CARLA_EXPORT bool carla_save_project(CarlaHostHandle handle, const char* filename);
  444. #ifndef BUILD_BRIDGE
  445. /*!
  446. * Get the currently set project folder.
  447. * @note Valid for both standalone and plugin versions.
  448. */
  449. CARLA_EXPORT const char* carla_get_current_project_folder(CarlaHostHandle handle);
  450. /*!
  451. * Get the currently set project filename.
  452. * @note Valid only for both standalone version.
  453. */
  454. CARLA_EXPORT const char* carla_get_current_project_filename(CarlaHostHandle handle);
  455. /*!
  456. * Clear the currently set project filename.
  457. */
  458. CARLA_EXPORT void carla_clear_project_filename(CarlaHostHandle handle);
  459. /*!
  460. * Connect two patchbay ports.
  461. * @param groupIdA Output group
  462. * @param portIdA Output port
  463. * @param groupIdB Input group
  464. * @param portIdB Input port
  465. * @see ENGINE_CALLBACK_PATCHBAY_CONNECTION_ADDED
  466. */
  467. CARLA_EXPORT bool carla_patchbay_connect(CarlaHostHandle handle, bool external, uint groupIdA, uint portIdA, uint groupIdB, uint portIdB);
  468. /*!
  469. * Disconnect two patchbay ports.
  470. * @param connectionId Connection Id
  471. * @see ENGINE_CALLBACK_PATCHBAY_CONNECTION_REMOVED
  472. */
  473. CARLA_EXPORT bool carla_patchbay_disconnect(CarlaHostHandle handle, bool external, uint connectionId);
  474. /*!
  475. * Set the position of a group.
  476. * This is purely cached and saved in the project file, Carla backend does nothing with the value.
  477. * When loading a project, callbacks are used to inform of the previously saved positions.
  478. * @see ENGINE_CALLBACK_PATCHBAY_CLIENT_POSITION_CHANGED
  479. */
  480. CARLA_EXPORT bool carla_patchbay_set_group_pos(CarlaHostHandle handle, bool external,
  481. uint groupId, int x1, int y1, int x2, int y2);
  482. /*!
  483. * Force the engine to resend all patchbay clients, ports and connections again.
  484. * @param external Wherever to show external/hardware ports instead of internal ones.
  485. * Only valid in patchbay engine mode, other modes will ignore this.
  486. */
  487. CARLA_EXPORT bool carla_patchbay_refresh(CarlaHostHandle handle, bool external);
  488. /*!
  489. * Start playback of the engine transport.
  490. */
  491. CARLA_EXPORT void carla_transport_play(CarlaHostHandle handle);
  492. /*!
  493. * Pause the engine transport.
  494. */
  495. CARLA_EXPORT void carla_transport_pause(CarlaHostHandle handle);
  496. /*!
  497. * Set the engine transport bpm.
  498. */
  499. CARLA_EXPORT void carla_transport_bpm(CarlaHostHandle handle, double bpm);
  500. /*!
  501. * Relocate the engine transport to a specific frame.
  502. */
  503. CARLA_EXPORT void carla_transport_relocate(CarlaHostHandle handle, uint64_t frame);
  504. /*!
  505. * Get the current transport frame.
  506. */
  507. CARLA_EXPORT uint64_t carla_get_current_transport_frame(CarlaHostHandle handle);
  508. /*!
  509. * Get the engine transport information.
  510. */
  511. CARLA_EXPORT const CarlaTransportInfo* carla_get_transport_info(CarlaHostHandle handle);
  512. #endif
  513. /*!
  514. * Current number of plugins loaded.
  515. */
  516. CARLA_EXPORT uint32_t carla_get_current_plugin_count(CarlaHostHandle handle);
  517. /*!
  518. * Maximum number of loadable plugins allowed.
  519. * Returns 0 if engine is not started.
  520. */
  521. CARLA_EXPORT uint32_t carla_get_max_plugin_number(CarlaHostHandle handle);
  522. /*!
  523. * Add a new plugin.
  524. * If you don't know the binary type use the BINARY_NATIVE macro.
  525. * @param btype Binary type
  526. * @param ptype Plugin type
  527. * @param filename Filename, if applicable
  528. * @param name Name of the plugin, can be NULL
  529. * @param label Plugin label, if applicable
  530. * @param uniqueId Plugin unique Id, if applicable
  531. * @param extraPtr Extra pointer, defined per plugin type
  532. * @param options Initial plugin options
  533. */
  534. CARLA_EXPORT bool carla_add_plugin(CarlaHostHandle handle,
  535. BinaryType btype, PluginType ptype,
  536. const char* filename, const char* name, const char* label, int64_t uniqueId,
  537. const void* extraPtr, uint options);
  538. /*!
  539. * Remove one plugin.
  540. * @param pluginId Plugin to remove.
  541. */
  542. CARLA_EXPORT bool carla_remove_plugin(CarlaHostHandle handle, uint pluginId);
  543. /*!
  544. * Remove all plugins.
  545. */
  546. CARLA_EXPORT bool carla_remove_all_plugins(CarlaHostHandle handle);
  547. #ifndef BUILD_BRIDGE
  548. /*!
  549. * Rename a plugin.
  550. * Returns the new name, or NULL if the operation failed.
  551. * @param pluginId Plugin to rename
  552. * @param newName New plugin name
  553. */
  554. CARLA_EXPORT bool carla_rename_plugin(CarlaHostHandle handle, uint pluginId, const char* newName);
  555. /*!
  556. * Clone a plugin.
  557. * @param pluginId Plugin to clone
  558. */
  559. CARLA_EXPORT bool carla_clone_plugin(CarlaHostHandle handle, uint pluginId);
  560. /*!
  561. * Prepare replace of a plugin.
  562. * The next call to carla_add_plugin() will use this id, replacing the current plugin.
  563. * @param pluginId Plugin to replace
  564. * @note This function requires carla_add_plugin() to be called afterwards *as soon as possible*.
  565. */
  566. CARLA_EXPORT bool carla_replace_plugin(CarlaHostHandle handle, uint pluginId);
  567. /*!
  568. * Switch two plugins positions.
  569. * @param pluginIdA Plugin A
  570. * @param pluginIdB Plugin B
  571. */
  572. CARLA_EXPORT bool carla_switch_plugins(CarlaHostHandle handle, uint pluginIdA, uint pluginIdB);
  573. #endif
  574. /*!
  575. * Load a plugin state.
  576. * @param pluginId Plugin
  577. * @param filename Path to plugin state
  578. * @see carla_save_plugin_state()
  579. */
  580. CARLA_EXPORT bool carla_load_plugin_state(CarlaHostHandle handle, uint pluginId, const char* filename);
  581. /*!
  582. * Save a plugin state.
  583. * @param pluginId Plugin
  584. * @param filename Path to plugin state
  585. * @see carla_load_plugin_state()
  586. */
  587. CARLA_EXPORT bool carla_save_plugin_state(CarlaHostHandle handle, uint pluginId, const char* filename);
  588. /*!
  589. * Export plugin as LV2.
  590. * @param pluginId Plugin
  591. * @param lv2path Path to lv2 plugin folder
  592. */
  593. CARLA_EXPORT bool carla_export_plugin_lv2(CarlaHostHandle handle, uint pluginId, const char* lv2path);
  594. /*!
  595. * Get information from a plugin.
  596. * @param pluginId Plugin
  597. */
  598. CARLA_EXPORT const CarlaPluginInfo* carla_get_plugin_info(CarlaHostHandle handle, uint pluginId);
  599. /*!
  600. * Get audio port count information from a plugin.
  601. * @param pluginId Plugin
  602. */
  603. CARLA_EXPORT const CarlaPortCountInfo* carla_get_audio_port_count_info(CarlaHostHandle handle, uint pluginId);
  604. /*!
  605. * Get MIDI port count information from a plugin.
  606. * @param pluginId Plugin
  607. */
  608. CARLA_EXPORT const CarlaPortCountInfo* carla_get_midi_port_count_info(CarlaHostHandle handle, uint pluginId);
  609. /*!
  610. * Get parameter count information from a plugin.
  611. * @param pluginId Plugin
  612. */
  613. CARLA_EXPORT const CarlaPortCountInfo* carla_get_parameter_count_info(CarlaHostHandle handle, uint pluginId);
  614. /*!
  615. * Get parameter information from a plugin.
  616. * @param pluginId Plugin
  617. * @param parameterId Parameter index
  618. * @see carla_get_parameter_count()
  619. */
  620. CARLA_EXPORT const CarlaParameterInfo* carla_get_parameter_info(CarlaHostHandle handle,
  621. uint pluginId,
  622. uint32_t parameterId);
  623. /*!
  624. * Get parameter scale point information from a plugin.
  625. * @param pluginId Plugin
  626. * @param parameterId Parameter index
  627. * @param scalePointId Parameter scale-point index
  628. * @see CarlaParameterInfo::scalePointCount
  629. */
  630. CARLA_EXPORT const CarlaScalePointInfo* carla_get_parameter_scalepoint_info(CarlaHostHandle handle,
  631. uint pluginId,
  632. uint32_t parameterId,
  633. uint32_t scalePointId);
  634. /*!
  635. * Get a plugin's parameter data.
  636. * @param pluginId Plugin
  637. * @param parameterId Parameter index
  638. * @see carla_get_parameter_count()
  639. */
  640. CARLA_EXPORT const ParameterData* carla_get_parameter_data(CarlaHostHandle handle,
  641. uint pluginId,
  642. uint32_t parameterId);
  643. /*!
  644. * Get a plugin's parameter ranges.
  645. * @param pluginId Plugin
  646. * @param parameterId Parameter index
  647. * @see carla_get_parameter_count()
  648. */
  649. CARLA_EXPORT const ParameterRanges* carla_get_parameter_ranges(CarlaHostHandle handle,
  650. uint pluginId,
  651. uint32_t parameterId);
  652. /*!
  653. * Get a plugin's MIDI program data.
  654. * @param pluginId Plugin
  655. * @param midiProgramId MIDI Program index
  656. * @see carla_get_midi_program_count()
  657. */
  658. CARLA_EXPORT const MidiProgramData* carla_get_midi_program_data(CarlaHostHandle handle,
  659. uint pluginId,
  660. uint32_t midiProgramId);
  661. /*!
  662. * Get a plugin's custom data, using index.
  663. * @param pluginId Plugin
  664. * @param customDataId Custom data index
  665. * @see carla_get_custom_data_count()
  666. */
  667. CARLA_EXPORT const CustomData* carla_get_custom_data(CarlaHostHandle handle, uint pluginId, uint32_t customDataId);
  668. /*!
  669. * Get a plugin's custom data value, using type and key.
  670. * @param pluginId Plugin
  671. * @param type Custom data type
  672. * @param key Custom data key
  673. * @see carla_get_custom_data_count()
  674. */
  675. CARLA_EXPORT const char* carla_get_custom_data_value(CarlaHostHandle handle,
  676. uint pluginId,
  677. const char* type,
  678. const char* key);
  679. /*!
  680. * Get a plugin's chunk data.
  681. * @param pluginId Plugin
  682. * @see PLUGIN_OPTION_USE_CHUNKS and carla_set_chunk_data()
  683. */
  684. CARLA_EXPORT const char* carla_get_chunk_data(CarlaHostHandle handle, uint pluginId);
  685. /*!
  686. * Get how many parameters a plugin has.
  687. * @param pluginId Plugin
  688. */
  689. CARLA_EXPORT uint32_t carla_get_parameter_count(CarlaHostHandle handle, uint pluginId);
  690. /*!
  691. * Get how many programs a plugin has.
  692. * @param pluginId Plugin
  693. * @see carla_get_program_name()
  694. */
  695. CARLA_EXPORT uint32_t carla_get_program_count(CarlaHostHandle handle, uint pluginId);
  696. /*!
  697. * Get how many MIDI programs a plugin has.
  698. * @param pluginId Plugin
  699. * @see carla_get_midi_program_name() and carla_get_midi_program_data()
  700. */
  701. CARLA_EXPORT uint32_t carla_get_midi_program_count(CarlaHostHandle handle, uint pluginId);
  702. /*!
  703. * Get how many custom data sets a plugin has.
  704. * @param pluginId Plugin
  705. * @see carla_get_custom_data()
  706. */
  707. CARLA_EXPORT uint32_t carla_get_custom_data_count(CarlaHostHandle handle, uint pluginId);
  708. /*!
  709. * Get a plugin's parameter text (custom display of internal values).
  710. * @param pluginId Plugin
  711. * @param parameterId Parameter index
  712. * @see PARAMETER_USES_CUSTOM_TEXT
  713. */
  714. CARLA_EXPORT const char* carla_get_parameter_text(CarlaHostHandle handle, uint pluginId, uint32_t parameterId);
  715. /*!
  716. * Get a plugin's program name.
  717. * @param pluginId Plugin
  718. * @param programId Program index
  719. * @see carla_get_program_count()
  720. */
  721. CARLA_EXPORT const char* carla_get_program_name(CarlaHostHandle handle, uint pluginId, uint32_t programId);
  722. /*!
  723. * Get a plugin's MIDI program name.
  724. * @param pluginId Plugin
  725. * @param midiProgramId MIDI Program index
  726. * @see carla_get_midi_program_count()
  727. */
  728. CARLA_EXPORT const char* carla_get_midi_program_name(CarlaHostHandle handle, uint pluginId, uint32_t midiProgramId);
  729. /*!
  730. * Get a plugin's real name.
  731. * This is the name the plugin uses to identify itself; may not be unique.
  732. * @param pluginId Plugin
  733. */
  734. CARLA_EXPORT const char* carla_get_real_plugin_name(CarlaHostHandle handle, uint pluginId);
  735. /*!
  736. * Get a plugin's program index.
  737. * @param pluginId Plugin
  738. */
  739. CARLA_EXPORT int32_t carla_get_current_program_index(CarlaHostHandle handle, uint pluginId);
  740. /*!
  741. * Get a plugin's midi program index.
  742. * @param pluginId Plugin
  743. */
  744. CARLA_EXPORT int32_t carla_get_current_midi_program_index(CarlaHostHandle handle, uint pluginId);
  745. /*!
  746. * Get a plugin's default parameter value.
  747. * @param pluginId Plugin
  748. * @param parameterId Parameter index
  749. */
  750. CARLA_EXPORT float carla_get_default_parameter_value(CarlaHostHandle handle, uint pluginId, uint32_t parameterId);
  751. /*!
  752. * Get a plugin's current parameter value.
  753. * @param pluginId Plugin
  754. * @param parameterId Parameter index
  755. */
  756. CARLA_EXPORT float carla_get_current_parameter_value(CarlaHostHandle handle, uint pluginId, uint32_t parameterId);
  757. /*!
  758. * Get a plugin's internal parameter value.
  759. * @param pluginId Plugin
  760. * @param parameterId Parameter index, maybe be negative
  761. * @see InternalParameterIndex
  762. */
  763. CARLA_EXPORT float carla_get_internal_parameter_value(CarlaHostHandle handle, uint pluginId, int32_t parameterId);
  764. /*!
  765. * Get a plugin's internal latency, in samples.
  766. * @param pluginId Plugin
  767. * @see InternalParameterIndex
  768. */
  769. CARLA_EXPORT uint32_t carla_get_plugin_latency(CarlaHostHandle handle, uint pluginId);
  770. /*!
  771. * Get a plugin's peak values.
  772. * @param pluginId Plugin
  773. */
  774. CARLA_EXPORT const float* carla_get_peak_values(CarlaHostHandle handle, uint pluginId);
  775. /*!
  776. * Get a plugin's input peak value.
  777. * @param pluginId Plugin
  778. * @param isLeft Wherever to get the left/mono value, otherwise right.
  779. */
  780. CARLA_EXPORT float carla_get_input_peak_value(CarlaHostHandle handle, uint pluginId, bool isLeft);
  781. /*!
  782. * Get a plugin's output peak value.
  783. * @param pluginId Plugin
  784. * @param isLeft Wherever to get the left/mono value, otherwise right.
  785. */
  786. CARLA_EXPORT float carla_get_output_peak_value(CarlaHostHandle handle, uint pluginId, bool isLeft);
  787. /*!
  788. * Render a plugin's inline display.
  789. * @param pluginId Plugin
  790. */
  791. CARLA_EXPORT const CarlaInlineDisplayImageSurface* carla_render_inline_display(CarlaHostHandle handle,
  792. uint pluginId,
  793. uint32_t width,
  794. uint32_t height);
  795. /*!
  796. * Enable or disable a plugin.
  797. * @param pluginId Plugin
  798. * @param onOff New active state
  799. */
  800. CARLA_EXPORT void carla_set_active(CarlaHostHandle handle, uint pluginId, bool onOff);
  801. #ifndef BUILD_BRIDGE
  802. /*!
  803. * Change a plugin's internal dry/wet.
  804. * @param pluginId Plugin
  805. * @param value New dry/wet value
  806. */
  807. CARLA_EXPORT void carla_set_drywet(CarlaHostHandle handle, uint pluginId, float value);
  808. /*!
  809. * Change a plugin's internal volume.
  810. * @param pluginId Plugin
  811. * @param value New volume
  812. */
  813. CARLA_EXPORT void carla_set_volume(CarlaHostHandle handle, uint pluginId, float value);
  814. /*!
  815. * Change a plugin's internal stereo balance, left channel.
  816. * @param pluginId Plugin
  817. * @param value New value
  818. */
  819. CARLA_EXPORT void carla_set_balance_left(CarlaHostHandle handle, uint pluginId, float value);
  820. /*!
  821. * Change a plugin's internal stereo balance, right channel.
  822. * @param pluginId Plugin
  823. * @param value New value
  824. */
  825. CARLA_EXPORT void carla_set_balance_right(CarlaHostHandle handle, uint pluginId, float value);
  826. /*!
  827. * Change a plugin's internal mono panning value.
  828. * @param pluginId Plugin
  829. * @param value New value
  830. */
  831. CARLA_EXPORT void carla_set_panning(CarlaHostHandle handle, uint pluginId, float value);
  832. /*!
  833. * Change a plugin's internal control channel.
  834. * @param pluginId Plugin
  835. * @param channel New channel
  836. */
  837. CARLA_EXPORT void carla_set_ctrl_channel(CarlaHostHandle handle, uint pluginId, int8_t channel);
  838. #endif
  839. /*!
  840. * Enable a plugin's option.
  841. * @param pluginId Plugin
  842. * @param option An option from PluginOptions
  843. * @param yesNo New enabled state
  844. */
  845. CARLA_EXPORT void carla_set_option(CarlaHostHandle handle, uint pluginId, uint option, bool yesNo);
  846. /*!
  847. * Change a plugin's parameter value.
  848. * @param pluginId Plugin
  849. * @param parameterId Parameter index
  850. * @param value New value
  851. */
  852. CARLA_EXPORT void carla_set_parameter_value(CarlaHostHandle handle, uint pluginId, uint32_t parameterId, float value);
  853. #ifndef BUILD_BRIDGE
  854. /*!
  855. * Change a plugin's parameter MIDI channel.
  856. * @param pluginId Plugin
  857. * @param parameterId Parameter index
  858. * @param channel New MIDI channel
  859. */
  860. CARLA_EXPORT void carla_set_parameter_midi_channel(CarlaHostHandle handle,
  861. uint pluginId,
  862. uint32_t parameterId,
  863. uint8_t channel);
  864. /*!
  865. * Change a plugin's parameter mapped control index.
  866. * @param pluginId Plugin
  867. * @param parameterId Parameter index
  868. * @param cc New control index
  869. */
  870. CARLA_EXPORT void carla_set_parameter_mapped_control_index(CarlaHostHandle handle,
  871. uint pluginId,
  872. uint32_t parameterId,
  873. int16_t index);
  874. /*!
  875. * Change a plugin's parameter mapped range.
  876. * @param pluginId Plugin
  877. * @param parameterId Parameter index
  878. * @param minimum New mapped minimum
  879. * @param maximum New mapped maximum
  880. */
  881. CARLA_EXPORT void carla_set_parameter_mapped_range(CarlaHostHandle handle,
  882. uint pluginId,
  883. uint32_t parameterId,
  884. float minimum, float maximum);
  885. /*!
  886. * Change a plugin's parameter in drag/touch mode state.
  887. * Usually happens from a UI when the user is moving a parameter with a mouse or similar input.
  888. * @param pluginId Plugin
  889. * @param parameterId Parameter index
  890. * @param touch New state
  891. */
  892. CARLA_EXPORT void carla_set_parameter_touch(CarlaHostHandle handle,
  893. uint pluginId,
  894. uint32_t parameterId,
  895. bool touch);
  896. #endif
  897. /*!
  898. * Change a plugin's current program.
  899. * @param pluginId Plugin
  900. * @param programId New program
  901. */
  902. CARLA_EXPORT void carla_set_program(CarlaHostHandle handle, uint pluginId, uint32_t programId);
  903. /*!
  904. * Change a plugin's current MIDI program.
  905. * @param pluginId Plugin
  906. * @param midiProgramId New value
  907. */
  908. CARLA_EXPORT void carla_set_midi_program(CarlaHostHandle handle, uint pluginId, uint32_t midiProgramId);
  909. /*!
  910. * Set a plugin's custom data set.
  911. * @param pluginId Plugin
  912. * @param type Type
  913. * @param key Key
  914. * @param value New value
  915. * @see CustomDataTypes and CustomDataKeys
  916. */
  917. CARLA_EXPORT void carla_set_custom_data(CarlaHostHandle handle,
  918. uint pluginId,
  919. const char* type, const char* key, const char* value);
  920. /*!
  921. * Set a plugin's chunk data.
  922. * @param pluginId Plugin
  923. * @param chunkData New chunk data
  924. * @see PLUGIN_OPTION_USE_CHUNKS and carla_get_chunk_data()
  925. */
  926. CARLA_EXPORT void carla_set_chunk_data(CarlaHostHandle handle, uint pluginId, const char* chunkData);
  927. /*!
  928. * Tell a plugin to prepare for save.
  929. * This should be called before saving custom data sets.
  930. * @param pluginId Plugin
  931. */
  932. CARLA_EXPORT void carla_prepare_for_save(CarlaHostHandle handle, uint pluginId);
  933. /*!
  934. * Reset all plugin's parameters.
  935. * @param pluginId Plugin
  936. */
  937. CARLA_EXPORT void carla_reset_parameters(CarlaHostHandle handle, uint pluginId);
  938. /*!
  939. * Randomize all plugin's parameters.
  940. * @param pluginId Plugin
  941. */
  942. CARLA_EXPORT void carla_randomize_parameters(CarlaHostHandle handle, uint pluginId);
  943. #ifndef BUILD_BRIDGE
  944. /*!
  945. * Send a single note of a plugin.
  946. * If velocity is 0, note-off is sent; note-on otherwise.
  947. * @param pluginId Plugin
  948. * @param channel Note channel
  949. * @param note Note pitch
  950. * @param velocity Note velocity
  951. */
  952. CARLA_EXPORT void carla_send_midi_note(CarlaHostHandle handle,
  953. uint pluginId,
  954. uint8_t channel, uint8_t note, uint8_t velocity);
  955. #endif
  956. /*!
  957. * Set a custom title for the plugin UI window created by Carla.
  958. */
  959. CARLA_EXPORT void carla_set_custom_ui_title(CarlaHostHandle handle, uint pluginId, const char* title);
  960. /*!
  961. * Tell a plugin to show its own custom UI.
  962. * @param pluginId Plugin
  963. * @param yesNo New UI state, visible or not
  964. * @see PLUGIN_HAS_CUSTOM_UI
  965. */
  966. CARLA_EXPORT void carla_show_custom_ui(CarlaHostHandle handle, uint pluginId, bool yesNo);
  967. /*!
  968. * Embed the plugin's custom UI to the system pointer @a ptr.
  969. * This function is always called from the main thread.
  970. * @note This is very experimental and subject to change at this point
  971. */
  972. CARLA_EXPORT void* carla_embed_custom_ui(CarlaHostHandle handle, uint pluginId, void* ptr);
  973. /*!
  974. * Get the current engine buffer size.
  975. */
  976. CARLA_EXPORT uint32_t carla_get_buffer_size(CarlaHostHandle handle);
  977. /*!
  978. * Get the current engine sample rate.
  979. */
  980. CARLA_EXPORT double carla_get_sample_rate(CarlaHostHandle handle);
  981. /*!
  982. * Get the last error.
  983. */
  984. CARLA_EXPORT const char* carla_get_last_error(CarlaHostHandle handle);
  985. /*!
  986. * Get the current engine OSC URL (TCP).
  987. */
  988. CARLA_EXPORT const char* carla_get_host_osc_url_tcp(CarlaHostHandle handle);
  989. /*!
  990. * Get the current engine OSC URL (UDP).
  991. */
  992. CARLA_EXPORT const char* carla_get_host_osc_url_udp(CarlaHostHandle handle);
  993. /*!
  994. * Initialize NSM (that is, announce ourselves to it).
  995. * Must be called as early as possible in the program's lifecycle.
  996. * Returns true if NSM is available and initialized correctly.
  997. */
  998. CARLA_EXPORT bool carla_nsm_init(CarlaHostHandle handle, uint64_t pid, const char* executableName);
  999. /*!
  1000. * Respond to an NSM callback.
  1001. */
  1002. CARLA_EXPORT void carla_nsm_ready(CarlaHostHandle handle, NsmCallbackOpcode opcode);
  1003. #ifndef CARLA_UTILS_H_INCLUDED
  1004. /*!
  1005. * Get the complete license text of used third-party code and features.
  1006. * Returned string is in basic html format.
  1007. */
  1008. CARLA_EXPORT const char* carla_get_complete_license_text(void);
  1009. /*!
  1010. * Get the juce version used in the current Carla build.
  1011. */
  1012. CARLA_EXPORT const char* carla_get_juce_version(void);
  1013. /*!
  1014. * Get the list of supported file extensions in carla_load_file().
  1015. */
  1016. CARLA_EXPORT const char* const* carla_get_supported_file_extensions(void);
  1017. /*!
  1018. * Get the list of supported features in the current Carla build.
  1019. */
  1020. CARLA_EXPORT const char* const* carla_get_supported_features(void);
  1021. /*!
  1022. * Get the absolute filename of this carla library.
  1023. */
  1024. CARLA_EXPORT const char* carla_get_library_filename(void);
  1025. /*!
  1026. * Get the folder where this carla library resides.
  1027. */
  1028. CARLA_EXPORT const char* carla_get_library_folder(void);
  1029. #endif
  1030. /** @} */
  1031. #endif /* CARLA_HOST_H_INCLUDED */