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.

1558 lines
34KB

  1. /*
  2. * Carla Plugin Host
  3. * Copyright (C) 2011-2018 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_BACKEND_H_INCLUDED
  18. #define CARLA_BACKEND_H_INCLUDED
  19. #include "CarlaDefines.h"
  20. #ifdef CARLA_PROPER_CPP11_SUPPORT
  21. # include <cstdint>
  22. #else
  23. # include <stdint.h>
  24. #endif
  25. #define STR_MAX 0xFF
  26. #ifdef __cplusplus
  27. # define CARLA_BACKEND_START_NAMESPACE namespace CarlaBackend {
  28. # define CARLA_BACKEND_END_NAMESPACE }
  29. # define CARLA_BACKEND_USE_NAMESPACE using namespace CarlaBackend;
  30. # include <algorithm>
  31. # include <cmath>
  32. # include <limits>
  33. /* Start namespace */
  34. CARLA_BACKEND_START_NAMESPACE
  35. #endif
  36. /*!
  37. * @defgroup CarlaBackendAPI Carla Backend API
  38. *
  39. * The Carla Backend API.
  40. *
  41. * These are the base definitions for everything in the Carla backend code.
  42. * @{
  43. */
  44. /* ------------------------------------------------------------------------------------------------------------
  45. * Carla Backend API (base definitions) */
  46. /*!
  47. * Maximum default number of loadable plugins.
  48. */
  49. static const uint MAX_DEFAULT_PLUGINS = 99;
  50. /*!
  51. * Maximum number of loadable plugins in rack mode.
  52. */
  53. static const uint MAX_RACK_PLUGINS = 16;
  54. /*!
  55. * Maximum number of loadable plugins in patchbay mode.
  56. */
  57. static const uint MAX_PATCHBAY_PLUGINS = 255;
  58. /*!
  59. * Maximum default number of parameters allowed.
  60. * @see ENGINE_OPTION_MAX_PARAMETERS
  61. */
  62. static const uint MAX_DEFAULT_PARAMETERS = 200;
  63. /*!
  64. * The "plugin Id" for the global Carla instance.
  65. * Curently only used for audio peaks.
  66. */
  67. static const uint MAIN_CARLA_PLUGIN_ID = 0xFFFF;
  68. /* ------------------------------------------------------------------------------------------------------------
  69. * Engine Driver Device Hints */
  70. /*!
  71. * @defgroup EngineDriverHints Engine Driver Device Hints
  72. *
  73. * Various engine driver device hints.
  74. * @see CarlaEngine::getHints(), CarlaEngine::getDriverDeviceInfo() and carla_get_engine_driver_device_info()
  75. * @{
  76. */
  77. /*!
  78. * Engine driver device has custom control-panel.
  79. */
  80. static const uint ENGINE_DRIVER_DEVICE_HAS_CONTROL_PANEL = 0x1;
  81. /*!
  82. * Engine driver device can use a triple-buffer (3 number of periods instead of the usual 2).
  83. * @see ENGINE_OPTION_AUDIO_NUM_PERIODS
  84. */
  85. static const uint ENGINE_DRIVER_DEVICE_CAN_TRIPLE_BUFFER = 0x2;
  86. /*!
  87. * Engine driver device can change buffer-size on the fly.
  88. * @see ENGINE_OPTION_AUDIO_BUFFER_SIZE
  89. */
  90. static const uint ENGINE_DRIVER_DEVICE_VARIABLE_BUFFER_SIZE = 0x4;
  91. /*!
  92. * Engine driver device can change sample-rate on the fly.
  93. * @see ENGINE_OPTION_AUDIO_SAMPLE_RATE
  94. */
  95. static const uint ENGINE_DRIVER_DEVICE_VARIABLE_SAMPLE_RATE = 0x8;
  96. /** @} */
  97. /* ------------------------------------------------------------------------------------------------------------
  98. * Plugin Hints */
  99. /*!
  100. * @defgroup PluginHints Plugin Hints
  101. *
  102. * Various plugin hints.
  103. * @see CarlaPlugin::getHints() and carla_get_plugin_info()
  104. * @{
  105. */
  106. /*!
  107. * Plugin is a bridge.
  108. * This hint is required because "bridge" itself is not a plugin type.
  109. */
  110. static const uint PLUGIN_IS_BRIDGE = 0x001;
  111. /*!
  112. * Plugin is hard real-time safe.
  113. */
  114. static const uint PLUGIN_IS_RTSAFE = 0x002;
  115. /*!
  116. * Plugin is a synth (produces sound).
  117. */
  118. static const uint PLUGIN_IS_SYNTH = 0x004;
  119. /*!
  120. * Plugin has its own custom UI.
  121. * @see CarlaPlugin::showCustomUI() and carla_show_custom_ui()
  122. */
  123. static const uint PLUGIN_HAS_CUSTOM_UI = 0x008;
  124. /*!
  125. * Plugin can use internal Dry/Wet control.
  126. */
  127. static const uint PLUGIN_CAN_DRYWET = 0x010;
  128. /*!
  129. * Plugin can use internal Volume control.
  130. */
  131. static const uint PLUGIN_CAN_VOLUME = 0x020;
  132. /*!
  133. * Plugin can use internal (Stereo) Balance controls.
  134. */
  135. static const uint PLUGIN_CAN_BALANCE = 0x040;
  136. /*!
  137. * Plugin can use internal (Mono) Panning control.
  138. */
  139. static const uint PLUGIN_CAN_PANNING = 0x080;
  140. /*!
  141. * Plugin needs a constant, fixed-size audio buffer.
  142. */
  143. static const uint PLUGIN_NEEDS_FIXED_BUFFERS = 0x100;
  144. /*!
  145. * Plugin needs to receive all UI events in the main thread.
  146. */
  147. static const uint PLUGIN_NEEDS_UI_MAIN_THREAD = 0x200;
  148. /*!
  149. * Plugin uses 1 program per MIDI channel.
  150. * @note: Only used in some internal plugins and sf2 files.
  151. */
  152. static const uint PLUGIN_USES_MULTI_PROGS = 0x400;
  153. /*!
  154. * Plugin can make use of inline display API.
  155. */
  156. static const uint PLUGIN_HAS_INLINE_DISPLAY = 0x800;
  157. /** @} */
  158. /* ------------------------------------------------------------------------------------------------------------
  159. * Plugin Options */
  160. /*!
  161. * @defgroup PluginOptions Plugin Options
  162. *
  163. * Various plugin options.
  164. * @see CarlaPlugin::getOptionsAvailable(), CarlaPlugin::getOptionsEnabled(), carla_get_plugin_info() and carla_set_option()
  165. * @{
  166. */
  167. /*!
  168. * Use constant/fixed-size audio buffers.
  169. */
  170. static const uint PLUGIN_OPTION_FIXED_BUFFERS = 0x001;
  171. /*!
  172. * Force mono plugin as stereo.
  173. */
  174. static const uint PLUGIN_OPTION_FORCE_STEREO = 0x002;
  175. /*!
  176. * Map MIDI programs to plugin programs.
  177. */
  178. static const uint PLUGIN_OPTION_MAP_PROGRAM_CHANGES = 0x004;
  179. /*!
  180. * Use chunks to save and restore data instead of parameter values.
  181. */
  182. static const uint PLUGIN_OPTION_USE_CHUNKS = 0x008;
  183. /*!
  184. * Send MIDI control change events.
  185. */
  186. static const uint PLUGIN_OPTION_SEND_CONTROL_CHANGES = 0x010;
  187. /*!
  188. * Send MIDI channel pressure events.
  189. */
  190. static const uint PLUGIN_OPTION_SEND_CHANNEL_PRESSURE = 0x020;
  191. /*!
  192. * Send MIDI note after-touch events.
  193. */
  194. static const uint PLUGIN_OPTION_SEND_NOTE_AFTERTOUCH = 0x040;
  195. /*!
  196. * Send MIDI pitch-bend events.
  197. */
  198. static const uint PLUGIN_OPTION_SEND_PITCHBEND = 0x080;
  199. /*!
  200. * Send MIDI all-sounds/notes-off events, single note-offs otherwise.
  201. */
  202. static const uint PLUGIN_OPTION_SEND_ALL_SOUND_OFF = 0x100;
  203. /*!
  204. * Send MIDI bank/program changes.
  205. * @note: This option conflicts with PLUGIN_OPTION_MAP_PROGRAM_CHANGES and cannot be used at the same time.
  206. */
  207. static const uint PLUGIN_OPTION_SEND_PROGRAM_CHANGES = 0x200;
  208. /** @} */
  209. /* ------------------------------------------------------------------------------------------------------------
  210. * Parameter Hints */
  211. /*!
  212. * @defgroup ParameterHints Parameter Hints
  213. *
  214. * Various parameter hints.
  215. * @see CarlaPlugin::getParameterData() and carla_get_parameter_data()
  216. * @{
  217. */
  218. /*!
  219. * Parameter value is boolean.
  220. * It's always at either minimum or maximum value.
  221. */
  222. static const uint PARAMETER_IS_BOOLEAN = 0x001;
  223. /*!
  224. * Parameter value is integer.
  225. */
  226. static const uint PARAMETER_IS_INTEGER = 0x002;
  227. /*!
  228. * Parameter value is logarithmic.
  229. */
  230. static const uint PARAMETER_IS_LOGARITHMIC = 0x004;
  231. /*!
  232. * Parameter is enabled.
  233. * It can be viewed, changed and stored.
  234. */
  235. static const uint PARAMETER_IS_ENABLED = 0x010;
  236. /*!
  237. * Parameter is automable (real-time safe).
  238. */
  239. static const uint PARAMETER_IS_AUTOMABLE = 0x020;
  240. /*!
  241. * Parameter is read-only.
  242. * It cannot be changed.
  243. */
  244. static const uint PARAMETER_IS_READ_ONLY = 0x040;
  245. /*!
  246. * Parameter needs sample rate to work.
  247. * Value and ranges are multiplied by sample rate on usage and divided by sample rate on save.
  248. */
  249. static const uint PARAMETER_USES_SAMPLERATE = 0x100;
  250. /*!
  251. * Parameter uses scale points to define internal values in a meaningful way.
  252. */
  253. static const uint PARAMETER_USES_SCALEPOINTS = 0x200;
  254. /*!
  255. * Parameter uses custom text for displaying its value.
  256. * @see CarlaPlugin::getParameterText() and carla_get_parameter_text()
  257. */
  258. static const uint PARAMETER_USES_CUSTOM_TEXT = 0x400;
  259. /** @} */
  260. /* ------------------------------------------------------------------------------------------------------------
  261. * Patchbay Port Hints */
  262. /*!
  263. * @defgroup PatchbayPortHints Patchbay Port Hints
  264. *
  265. * Various patchbay port hints.
  266. * @{
  267. */
  268. /*!
  269. * Patchbay port is input.
  270. * When this hint is not set, port is assumed to be output.
  271. */
  272. static const uint PATCHBAY_PORT_IS_INPUT = 0x01;
  273. /*!
  274. * Patchbay port is of Audio type.
  275. */
  276. static const uint PATCHBAY_PORT_TYPE_AUDIO = 0x02;
  277. /*!
  278. * Patchbay port is of CV type (Control Voltage).
  279. */
  280. static const uint PATCHBAY_PORT_TYPE_CV = 0x04;
  281. /*!
  282. * Patchbay port is of MIDI type.
  283. */
  284. static const uint PATCHBAY_PORT_TYPE_MIDI = 0x08;
  285. /*!
  286. * Patchbay port is of OSC type.
  287. */
  288. static const uint PATCHBAY_PORT_TYPE_OSC = 0x10;
  289. /** @} */
  290. /* ------------------------------------------------------------------------------------------------------------
  291. * Custom Data Types */
  292. /*!
  293. * @defgroup CustomDataTypes Custom Data Types
  294. *
  295. * These types define how the value in the CustomData struct is stored.
  296. * @see CustomData::type
  297. * @{
  298. */
  299. /*!
  300. * Boolean string type URI.
  301. * Only "true" and "false" are valid values.
  302. */
  303. static const char* const CUSTOM_DATA_TYPE_BOOLEAN = "http://kxstudio.sf.net/ns/carla/boolean";
  304. /*!
  305. * Chunk type URI.
  306. */
  307. static const char* const CUSTOM_DATA_TYPE_CHUNK = "http://kxstudio.sf.net/ns/carla/chunk";
  308. /*!
  309. * Property type URI.
  310. */
  311. static const char* const CUSTOM_DATA_TYPE_PROPERTY = "http://kxstudio.sf.net/ns/carla/property";
  312. /*!
  313. * String type URI.
  314. */
  315. static const char* const CUSTOM_DATA_TYPE_STRING = "http://kxstudio.sf.net/ns/carla/string";
  316. /** @} */
  317. /* ------------------------------------------------------------------------------------------------------------
  318. * Custom Data Keys */
  319. /*!
  320. * @defgroup CustomDataKeys Custom Data Keys
  321. *
  322. * Pre-defined keys used internally in Carla.
  323. * @see CustomData::key
  324. * @{
  325. */
  326. /*!
  327. * UI position key.
  328. */
  329. static const char* const CUSTOM_DATA_KEY_UI_POSITION = "CarlaUiPosition";
  330. /*!
  331. * UI size key.
  332. */
  333. static const char* const CUSTOM_DATA_KEY_UI_SIZE = "CarlaUiSize";
  334. /*!
  335. * UI visible key.
  336. */
  337. static const char* const CUSTOM_DATA_KEY_UI_VISIBLE = "CarlaUiVisible";
  338. /** @} */
  339. /* ------------------------------------------------------------------------------------------------------------
  340. * Binary Type */
  341. /*!
  342. * The binary type of a plugin.
  343. */
  344. typedef enum {
  345. /*!
  346. * Null binary type.
  347. */
  348. BINARY_NONE = 0,
  349. /*!
  350. * POSIX 32bit binary.
  351. */
  352. BINARY_POSIX32 = 1,
  353. /*!
  354. * POSIX 64bit binary.
  355. */
  356. BINARY_POSIX64 = 2,
  357. /*!
  358. * Windows 32bit binary.
  359. */
  360. BINARY_WIN32 = 3,
  361. /*!
  362. * Windows 64bit binary.
  363. */
  364. BINARY_WIN64 = 4,
  365. /*!
  366. * Other binary type.
  367. */
  368. BINARY_OTHER = 5
  369. } BinaryType;
  370. /* ------------------------------------------------------------------------------------------------------------
  371. * Plugin Type */
  372. /*!
  373. * Plugin type.
  374. * Some files are handled as if they were plugins.
  375. */
  376. typedef enum {
  377. /*!
  378. * Null plugin type.
  379. */
  380. PLUGIN_NONE = 0,
  381. /*!
  382. * Internal plugin.
  383. */
  384. PLUGIN_INTERNAL = 1,
  385. /*!
  386. * LADSPA plugin.
  387. */
  388. PLUGIN_LADSPA = 2,
  389. /*!
  390. * DSSI plugin.
  391. */
  392. PLUGIN_DSSI = 3,
  393. /*!
  394. * LV2 plugin.
  395. */
  396. PLUGIN_LV2 = 4,
  397. /*!
  398. * VST2 plugin.
  399. */
  400. PLUGIN_VST2 = 5,
  401. /*!
  402. * SF2 file (SoundFont).
  403. */
  404. PLUGIN_SF2 = 6,
  405. /*!
  406. * SFZ file.
  407. */
  408. PLUGIN_SFZ = 7,
  409. /*!
  410. * JACK application.
  411. */
  412. PLUGIN_JACK = 8
  413. } PluginType;
  414. /* ------------------------------------------------------------------------------------------------------------
  415. * Plugin Category */
  416. /*!
  417. * Plugin category, which describes the functionality of a plugin.
  418. */
  419. typedef enum {
  420. /*!
  421. * Null plugin category.
  422. */
  423. PLUGIN_CATEGORY_NONE = 0,
  424. /*!
  425. * A synthesizer or generator.
  426. */
  427. PLUGIN_CATEGORY_SYNTH = 1,
  428. /*!
  429. * A delay or reverb.
  430. */
  431. PLUGIN_CATEGORY_DELAY = 2,
  432. /*!
  433. * An equalizer.
  434. */
  435. PLUGIN_CATEGORY_EQ = 3,
  436. /*!
  437. * A filter.
  438. */
  439. PLUGIN_CATEGORY_FILTER = 4,
  440. /*!
  441. * A distortion plugin.
  442. */
  443. PLUGIN_CATEGORY_DISTORTION = 5,
  444. /*!
  445. * A 'dynamic' plugin (amplifier, compressor, gate, etc).
  446. */
  447. PLUGIN_CATEGORY_DYNAMICS = 6,
  448. /*!
  449. * A 'modulator' plugin (chorus, flanger, phaser, etc).
  450. */
  451. PLUGIN_CATEGORY_MODULATOR = 7,
  452. /*!
  453. * An 'utility' plugin (analyzer, converter, mixer, etc).
  454. */
  455. PLUGIN_CATEGORY_UTILITY = 8,
  456. /*!
  457. * Miscellaneous plugin (used to check if the plugin has a category).
  458. */
  459. PLUGIN_CATEGORY_OTHER = 9
  460. } PluginCategory;
  461. /* ------------------------------------------------------------------------------------------------------------
  462. * Parameter Type */
  463. /*!
  464. * Plugin parameter type.
  465. */
  466. typedef enum {
  467. /*!
  468. * Null parameter type.
  469. */
  470. PARAMETER_UNKNOWN = 0,
  471. /*!
  472. * Input parameter.
  473. */
  474. PARAMETER_INPUT = 1,
  475. /*!
  476. * Ouput parameter.
  477. */
  478. PARAMETER_OUTPUT = 2
  479. } ParameterType;
  480. /* ------------------------------------------------------------------------------------------------------------
  481. * Internal Parameter Index */
  482. /*!
  483. * Special parameters used internally in Carla.
  484. * Plugins do not know about their existence.
  485. */
  486. typedef enum {
  487. /*!
  488. * Null parameter.
  489. */
  490. PARAMETER_NULL = -1,
  491. #ifndef BUILD_BRIDGE_ALTERNATIVE_ARCH
  492. /*!
  493. * Active parameter, boolean type.
  494. * Default is 'false'.
  495. */
  496. PARAMETER_ACTIVE = -2,
  497. /*!
  498. * Dry/Wet parameter.
  499. * Range 0.0...1.0; default is 1.0.
  500. */
  501. PARAMETER_DRYWET = -3,
  502. /*!
  503. * Volume parameter.
  504. * Range 0.0...1.27; default is 1.0.
  505. */
  506. PARAMETER_VOLUME = -4,
  507. /*!
  508. * Stereo Balance-Left parameter.
  509. * Range -1.0...1.0; default is -1.0.
  510. */
  511. PARAMETER_BALANCE_LEFT = -5,
  512. /*!
  513. * Stereo Balance-Right parameter.
  514. * Range -1.0...1.0; default is 1.0.
  515. */
  516. PARAMETER_BALANCE_RIGHT = -6,
  517. /*!
  518. * Mono Panning parameter.
  519. * Range -1.0...1.0; default is 0.0.
  520. */
  521. PARAMETER_PANNING = -7,
  522. /*!
  523. * MIDI Control channel, integer type.
  524. * Range -1...15 (-1 = off).
  525. */
  526. PARAMETER_CTRL_CHANNEL = -8,
  527. #endif
  528. /*!
  529. * Max value, defined only for convenience.
  530. */
  531. PARAMETER_MAX = -9
  532. } InternalParameterIndex;
  533. /* ------------------------------------------------------------------------------------------------------------
  534. * Engine Callback Opcode */
  535. /*!
  536. * Engine callback opcodes.
  537. * Front-ends must never block indefinitely during a callback.
  538. * @see EngineCallbackFunc, CarlaEngine::setCallback() and carla_set_engine_callback()
  539. */
  540. typedef enum {
  541. /*!
  542. * Debug.
  543. * This opcode is undefined and used only for testing purposes.
  544. */
  545. ENGINE_CALLBACK_DEBUG = 0,
  546. /*!
  547. * A plugin has been added.
  548. * @a pluginId Plugin Id
  549. * @a valueStr Plugin name
  550. */
  551. ENGINE_CALLBACK_PLUGIN_ADDED = 1,
  552. /*!
  553. * A plugin has been removed.
  554. * @a pluginId Plugin Id
  555. */
  556. ENGINE_CALLBACK_PLUGIN_REMOVED = 2,
  557. /*!
  558. * A plugin has been renamed.
  559. * @a pluginId Plugin Id
  560. * @a valueStr New plugin name
  561. */
  562. ENGINE_CALLBACK_PLUGIN_RENAMED = 3,
  563. /*!
  564. * A plugin has become unavailable.
  565. * @a pluginId Plugin Id
  566. * @a valueStr Related error string
  567. */
  568. ENGINE_CALLBACK_PLUGIN_UNAVAILABLE = 4,
  569. /*!
  570. * A parameter value has changed.
  571. * @a pluginId Plugin Id
  572. * @a value1 Parameter index
  573. * @a value3 New parameter value
  574. */
  575. ENGINE_CALLBACK_PARAMETER_VALUE_CHANGED = 5,
  576. /*!
  577. * A parameter default has changed.
  578. * @a pluginId Plugin Id
  579. * @a value1 Parameter index
  580. * @a value3 New default value
  581. */
  582. ENGINE_CALLBACK_PARAMETER_DEFAULT_CHANGED = 6,
  583. #ifndef BUILD_BRIDGE_ALTERNATIVE_ARCH
  584. /*!
  585. * A parameter's MIDI CC has changed.
  586. * @a pluginId Plugin Id
  587. * @a value1 Parameter index
  588. * @a value2 New MIDI CC
  589. */
  590. ENGINE_CALLBACK_PARAMETER_MIDI_CC_CHANGED = 7,
  591. /*!
  592. * A parameter's MIDI channel has changed.
  593. * @a pluginId Plugin Id
  594. * @a value1 Parameter index
  595. * @a value2 New MIDI channel
  596. */
  597. ENGINE_CALLBACK_PARAMETER_MIDI_CHANNEL_CHANGED = 8,
  598. /*!
  599. * A plugin option has changed.
  600. * @a pluginId Plugin Id
  601. * @a value1 Option
  602. * @a value2 New on/off state (1 for on, 0 for off)
  603. * @see PluginOptions
  604. */
  605. ENGINE_CALLBACK_OPTION_CHANGED = 9,
  606. #endif
  607. /*!
  608. * The current program of a plugin has changed.
  609. * @a pluginId Plugin Id
  610. * @a value1 New program index
  611. */
  612. ENGINE_CALLBACK_PROGRAM_CHANGED = 10,
  613. /*!
  614. * The current MIDI program of a plugin has changed.
  615. * @a pluginId Plugin Id
  616. * @a value1 New MIDI program index
  617. */
  618. ENGINE_CALLBACK_MIDI_PROGRAM_CHANGED = 11,
  619. /*!
  620. * A plugin's custom UI state has changed.
  621. * @a pluginId Plugin Id
  622. * @a value1 New state, as follows:
  623. * 0: UI is now hidden
  624. * 1: UI is now visible
  625. * -1: UI has crashed and should not be shown again
  626. */
  627. ENGINE_CALLBACK_UI_STATE_CHANGED = 12,
  628. /*!
  629. * A note has been pressed.
  630. * @a pluginId Plugin Id
  631. * @a value1 Channel
  632. * @a value2 Note
  633. * @a value3 Velocity
  634. */
  635. ENGINE_CALLBACK_NOTE_ON = 13,
  636. /*!
  637. * A note has been released.
  638. * @a pluginId Plugin Id
  639. * @a value1 Channel
  640. * @a value2 Note
  641. */
  642. ENGINE_CALLBACK_NOTE_OFF = 14,
  643. /*!
  644. * A plugin needs update.
  645. * @a pluginId Plugin Id
  646. */
  647. ENGINE_CALLBACK_UPDATE = 15,
  648. /*!
  649. * A plugin's data/information has changed.
  650. * @a pluginId Plugin Id
  651. */
  652. ENGINE_CALLBACK_RELOAD_INFO = 16,
  653. /*!
  654. * A plugin's parameters have changed.
  655. * @a pluginId Plugin Id
  656. */
  657. ENGINE_CALLBACK_RELOAD_PARAMETERS = 17,
  658. /*!
  659. * A plugin's programs have changed.
  660. * @a pluginId Plugin Id
  661. */
  662. ENGINE_CALLBACK_RELOAD_PROGRAMS = 18,
  663. /*!
  664. * A plugin state has changed.
  665. * @a pluginId Plugin Id
  666. */
  667. ENGINE_CALLBACK_RELOAD_ALL = 19,
  668. #ifndef BUILD_BRIDGE_ALTERNATIVE_ARCH
  669. /*!
  670. * A patchbay client has been added.
  671. * @a pluginId Client Id
  672. * @a value1 Client icon
  673. * @a value2 Plugin Id (-1 if not a plugin)
  674. * @a valueStr Client name
  675. * @see PatchbayIcon
  676. */
  677. ENGINE_CALLBACK_PATCHBAY_CLIENT_ADDED = 20,
  678. /*!
  679. * A patchbay client has been removed.
  680. * @a pluginId Client Id
  681. */
  682. ENGINE_CALLBACK_PATCHBAY_CLIENT_REMOVED = 21,
  683. /*!
  684. * A patchbay client has been renamed.
  685. * @a pluginId Client Id
  686. * @a valueStr New client name
  687. */
  688. ENGINE_CALLBACK_PATCHBAY_CLIENT_RENAMED = 22,
  689. /*!
  690. * A patchbay client data has changed.
  691. * @a pluginId Client Id
  692. * @a value1 New icon
  693. * @a value2 New plugin Id (-1 if not a plugin)
  694. * @see PatchbayIcon
  695. */
  696. ENGINE_CALLBACK_PATCHBAY_CLIENT_DATA_CHANGED = 23,
  697. /*!
  698. * A patchbay port has been added.
  699. * @a pluginId Client Id
  700. * @a value1 Port Id
  701. * @a value2 Port hints
  702. * @a valueStr Port name
  703. * @see PatchbayPortHints
  704. */
  705. ENGINE_CALLBACK_PATCHBAY_PORT_ADDED = 24,
  706. /*!
  707. * A patchbay port has been removed.
  708. * @a pluginId Client Id
  709. * @a value1 Port Id
  710. */
  711. ENGINE_CALLBACK_PATCHBAY_PORT_REMOVED = 25,
  712. /*!
  713. * A patchbay port has been renamed.
  714. * @a pluginId Client Id
  715. * @a value1 Port Id
  716. * @a valueStr New port name
  717. */
  718. ENGINE_CALLBACK_PATCHBAY_PORT_RENAMED = 26,
  719. /*!
  720. * A patchbay connection has been added.
  721. * @a pluginId Connection Id
  722. * @a valueStr Out group and port plus in group and port, in "og:op:ig:ip" syntax.
  723. */
  724. ENGINE_CALLBACK_PATCHBAY_CONNECTION_ADDED = 27,
  725. /*!
  726. * A patchbay connection has been removed.
  727. * @a pluginId Connection Id
  728. */
  729. ENGINE_CALLBACK_PATCHBAY_CONNECTION_REMOVED = 28,
  730. #endif
  731. /*!
  732. * Engine started.
  733. * @a value1 Process mode
  734. * @a value2 Transport mode
  735. * @a value3 Sample rate
  736. * @a valuestr Engine driver
  737. * @see EngineProcessMode
  738. * @see EngineTransportMode
  739. */
  740. ENGINE_CALLBACK_ENGINE_STARTED = 29,
  741. /*!
  742. * Engine stopped.
  743. */
  744. ENGINE_CALLBACK_ENGINE_STOPPED = 30,
  745. /*!
  746. * Engine process mode has changed.
  747. * @a value1 New process mode
  748. * @see EngineProcessMode
  749. */
  750. ENGINE_CALLBACK_PROCESS_MODE_CHANGED = 31,
  751. /*!
  752. * Engine transport mode has changed.
  753. * @a value1 New transport mode
  754. * @a valueStr New transport features enabled
  755. * @see EngineTransportMode
  756. */
  757. ENGINE_CALLBACK_TRANSPORT_MODE_CHANGED = 32,
  758. /*!
  759. * Engine buffer-size changed.
  760. * @a value1 New buffer size
  761. */
  762. ENGINE_CALLBACK_BUFFER_SIZE_CHANGED = 33,
  763. /*!
  764. * Engine sample-rate changed.
  765. * @a value3 New sample rate
  766. */
  767. ENGINE_CALLBACK_SAMPLE_RATE_CHANGED = 34,
  768. /*!
  769. * Project has finished loading.
  770. */
  771. ENGINE_CALLBACK_PROJECT_LOAD_FINISHED = 35,
  772. /*!
  773. * NSM callback.
  774. * (Work in progress, values are not defined yet)
  775. */
  776. ENGINE_CALLBACK_NSM = 36,
  777. /*!
  778. * Idle frontend.
  779. * This is used by the engine during long operations that might block the frontend,
  780. * giving it the possibility to idle while the operation is still in place.
  781. */
  782. ENGINE_CALLBACK_IDLE = 37,
  783. /*!
  784. * Show a message as information.
  785. * @a valueStr The message
  786. */
  787. ENGINE_CALLBACK_INFO = 38,
  788. /*!
  789. * Show a message as an error.
  790. * @a valueStr The message
  791. */
  792. ENGINE_CALLBACK_ERROR = 39,
  793. /*!
  794. * The engine has crashed or malfunctioned and will no longer work.
  795. */
  796. ENGINE_CALLBACK_QUIT = 40
  797. } EngineCallbackOpcode;
  798. /* ------------------------------------------------------------------------------------------------------------
  799. * Engine Option */
  800. /*!
  801. * Engine options.
  802. * @see CarlaEngine::getOptions(), CarlaEngine::setOption() and carla_set_engine_option()
  803. */
  804. typedef enum {
  805. /*!
  806. * Debug.
  807. * This option is undefined and used only for testing purposes.
  808. */
  809. ENGINE_OPTION_DEBUG = 0,
  810. /*!
  811. * Set the engine processing mode.
  812. * Default is ENGINE_PROCESS_MODE_MULTIPLE_CLIENTS on Linux and ENGINE_PROCESS_MODE_PATCHBAY for all other OSes.
  813. * @see EngineProcessMode
  814. */
  815. ENGINE_OPTION_PROCESS_MODE = 1,
  816. /*!
  817. * Set the engine transport mode.
  818. * Default is ENGINE_TRANSPORT_MODE_JACK on Linux and ENGINE_TRANSPORT_MODE_INTERNAL for all other OSes.
  819. * @see EngineTransportMode
  820. */
  821. ENGINE_OPTION_TRANSPORT_MODE = 2,
  822. /*!
  823. * Force mono plugins as stereo, by running 2 instances at the same time.
  824. * Default is false, but always true when process mode is ENGINE_PROCESS_MODE_CONTINUOUS_RACK.
  825. * @note Not supported by all plugins
  826. * @see PLUGIN_OPTION_FORCE_STEREO
  827. */
  828. ENGINE_OPTION_FORCE_STEREO = 3,
  829. /*!
  830. * Use plugin bridges whenever possible.
  831. * Default is no, EXPERIMENTAL.
  832. */
  833. ENGINE_OPTION_PREFER_PLUGIN_BRIDGES = 4,
  834. /*!
  835. * Use UI bridges whenever possible, otherwise UIs will be directly handled in the main backend thread.
  836. * Default is yes.
  837. */
  838. ENGINE_OPTION_PREFER_UI_BRIDGES = 5,
  839. /*!
  840. * Make custom plugin UIs always-on-top.
  841. * Default is yes.
  842. */
  843. ENGINE_OPTION_UIS_ALWAYS_ON_TOP = 6,
  844. /*!
  845. * Maximum number of parameters allowed.
  846. * Default is MAX_DEFAULT_PARAMETERS.
  847. */
  848. ENGINE_OPTION_MAX_PARAMETERS = 7,
  849. /*!
  850. * Timeout value for how much to wait for UI bridges to respond, in milliseconds.
  851. * Default is 4000 (4 seconds).
  852. */
  853. ENGINE_OPTION_UI_BRIDGES_TIMEOUT = 8,
  854. /*!
  855. * Audio buffer size.
  856. * Default is 512.
  857. */
  858. ENGINE_OPTION_AUDIO_BUFFER_SIZE = 9,
  859. /*!
  860. * Audio sample rate.
  861. * Default is 44100.
  862. */
  863. ENGINE_OPTION_AUDIO_SAMPLE_RATE = 10,
  864. /*!
  865. * Wherever to use 3 audio periods instead of the default 2.
  866. * Default is false.
  867. */
  868. ENGINE_OPTION_AUDIO_TRIPLE_BUFFER = 11,
  869. /*!
  870. * Audio device (within a driver).
  871. * Default unset.
  872. */
  873. ENGINE_OPTION_AUDIO_DEVICE = 12,
  874. /*!
  875. * Set path used for a specific plugin type.
  876. * Uses value as the plugin format, valueStr as actual path.
  877. * @see PluginType
  878. */
  879. ENGINE_OPTION_PLUGIN_PATH = 13,
  880. /*!
  881. * Set path to the binary files.
  882. * Default unset.
  883. * @note Must be set for plugin and UI bridges to work
  884. */
  885. ENGINE_OPTION_PATH_BINARIES = 14,
  886. /*!
  887. * Set path to the resource files.
  888. * Default unset.
  889. * @note Must be set for some internal plugins to work
  890. */
  891. ENGINE_OPTION_PATH_RESOURCES = 15,
  892. /*!
  893. * Prevent bad plugin and UI behaviour.
  894. * @note: Linux only
  895. */
  896. ENGINE_OPTION_PREVENT_BAD_BEHAVIOUR = 16,
  897. /*!
  898. * Set frontend winId, used to define as parent window for plugin UIs.
  899. */
  900. ENGINE_OPTION_FRONTEND_WIN_ID = 17,
  901. #if !defined(BUILD_BRIDGE_ALTERNATIVE_ARCH) && !defined(CARLA_OS_WIN)
  902. /*!
  903. * Set path to wine executable.
  904. */
  905. ENGINE_OPTION_WINE_EXECUTABLE = 18,
  906. /*!
  907. * Enable automatic wineprefix detection.
  908. */
  909. ENGINE_OPTION_WINE_AUTO_PREFIX = 19,
  910. /*!
  911. * Fallback wineprefix to use if automatic detection fails or is disabled, and WINEPREFIX is not set.
  912. */
  913. ENGINE_OPTION_WINE_FALLBACK_PREFIX = 20,
  914. /*!
  915. * Enable realtime priority for Wine application and server threads.
  916. */
  917. ENGINE_OPTION_WINE_RT_PRIO_ENABLED = 21,
  918. /*!
  919. * Base realtime priority for Wine threads.
  920. */
  921. ENGINE_OPTION_WINE_BASE_RT_PRIO = 22,
  922. /*!
  923. * Wine server realtime priority.
  924. */
  925. ENGINE_OPTION_WINE_SERVER_RT_PRIO = 23,
  926. #endif
  927. /*!
  928. * Capture console output into debug callbacks.
  929. */
  930. ENGINE_OPTION_DEBUG_CONSOLE_OUTPUT = 24
  931. } EngineOption;
  932. /* ------------------------------------------------------------------------------------------------------------
  933. * Engine Process Mode */
  934. /*!
  935. * Engine process mode.
  936. * @see ENGINE_OPTION_PROCESS_MODE
  937. */
  938. typedef enum {
  939. /*!
  940. * Single client mode.
  941. * Inputs and outputs are added dynamically as needed by plugins.
  942. */
  943. ENGINE_PROCESS_MODE_SINGLE_CLIENT = 0,
  944. /*!
  945. * Multiple client mode.
  946. * It has 1 master client + 1 client per plugin.
  947. */
  948. ENGINE_PROCESS_MODE_MULTIPLE_CLIENTS = 1,
  949. /*!
  950. * Single client, 'rack' mode.
  951. * Processes plugins in order of Id, with forced stereo always on.
  952. */
  953. ENGINE_PROCESS_MODE_CONTINUOUS_RACK = 2,
  954. /*!
  955. * Single client, 'patchbay' mode.
  956. */
  957. ENGINE_PROCESS_MODE_PATCHBAY = 3,
  958. /*!
  959. * Special mode, used in plugin-bridges only.
  960. */
  961. ENGINE_PROCESS_MODE_BRIDGE = 4
  962. } EngineProcessMode;
  963. /* ------------------------------------------------------------------------------------------------------------
  964. * Engine Transport Mode */
  965. /*!
  966. * Engine transport mode.
  967. * @see ENGINE_OPTION_TRANSPORT_MODE
  968. */
  969. typedef enum {
  970. /*!
  971. * No transport.
  972. */
  973. ENGINE_TRANSPORT_MODE_DISABLED = 0,
  974. /*!
  975. * Internal transport mode.
  976. */
  977. ENGINE_TRANSPORT_MODE_INTERNAL = 1,
  978. /*!
  979. * Transport from JACK.
  980. * Only available if driver name is "JACK".
  981. */
  982. ENGINE_TRANSPORT_MODE_JACK = 2,
  983. /*!
  984. * Transport from host, used when Carla is a plugin.
  985. */
  986. ENGINE_TRANSPORT_MODE_PLUGIN = 3,
  987. /*!
  988. * Special mode, used in plugin-bridges only.
  989. */
  990. ENGINE_TRANSPORT_MODE_BRIDGE = 4
  991. } EngineTransportMode;
  992. /* ------------------------------------------------------------------------------------------------------------
  993. * File Callback Opcode */
  994. /*!
  995. * File callback opcodes.
  996. * Front-ends must always block-wait for user input.
  997. * @see FileCallbackFunc, CarlaEngine::setFileCallback() and carla_set_file_callback()
  998. */
  999. typedef enum {
  1000. /*!
  1001. * Debug.
  1002. * This opcode is undefined and used only for testing purposes.
  1003. */
  1004. FILE_CALLBACK_DEBUG = 0,
  1005. /*!
  1006. * Open file or folder.
  1007. */
  1008. FILE_CALLBACK_OPEN = 1,
  1009. /*!
  1010. * Save file or folder.
  1011. */
  1012. FILE_CALLBACK_SAVE = 2
  1013. } FileCallbackOpcode;
  1014. /* ------------------------------------------------------------------------------------------------------------
  1015. * Patchbay Icon */
  1016. /*!
  1017. * The icon of a patchbay client/group.
  1018. */
  1019. enum PatchbayIcon {
  1020. /*!
  1021. * Generic application icon.
  1022. * Used for all non-plugin clients that don't have a specific icon.
  1023. */
  1024. PATCHBAY_ICON_APPLICATION = 0,
  1025. /*!
  1026. * Plugin icon.
  1027. * Used for all plugin clients that don't have a specific icon.
  1028. */
  1029. PATCHBAY_ICON_PLUGIN = 1,
  1030. /*!
  1031. * Hardware icon.
  1032. * Used for hardware (audio or MIDI) clients.
  1033. */
  1034. PATCHBAY_ICON_HARDWARE = 2,
  1035. /*!
  1036. * Carla icon.
  1037. * Used for the main app.
  1038. */
  1039. PATCHBAY_ICON_CARLA = 3,
  1040. /*!
  1041. * DISTRHO icon.
  1042. * Used for DISTRHO based plugins.
  1043. */
  1044. PATCHBAY_ICON_DISTRHO = 4,
  1045. /*!
  1046. * File icon.
  1047. * Used for file type plugins (like SF2 snd SFZ).
  1048. */
  1049. PATCHBAY_ICON_FILE = 5
  1050. };
  1051. /* ------------------------------------------------------------------------------------------------------------
  1052. * Carla Backend API (C stuff) */
  1053. /*!
  1054. * Engine callback function.
  1055. * Front-ends must never block indefinitely during a callback.
  1056. * @see EngineCallbackOpcode, CarlaEngine::setCallback() and carla_set_engine_callback()
  1057. */
  1058. typedef void (*EngineCallbackFunc)(void* ptr, EngineCallbackOpcode action, uint pluginId, int value1, int value2, float value3, const char* valueStr);
  1059. /*!
  1060. * File callback function.
  1061. * @see FileCallbackOpcode
  1062. */
  1063. typedef const char* (*FileCallbackFunc)(void* ptr, FileCallbackOpcode action, bool isDir, const char* title, const char* filter);
  1064. /*!
  1065. * Parameter data.
  1066. */
  1067. typedef struct {
  1068. /*!
  1069. * This parameter type.
  1070. */
  1071. ParameterType type;
  1072. /*!
  1073. * This parameter hints.
  1074. * @see ParameterHints
  1075. */
  1076. uint hints;
  1077. /*!
  1078. * Index as seen by Carla.
  1079. */
  1080. int32_t index;
  1081. /*!
  1082. * Real index as seen by plugins.
  1083. */
  1084. int32_t rindex;
  1085. /*!
  1086. * Currently mapped MIDI CC.
  1087. * A value lower than 0 means invalid or unused.
  1088. * Maximum allowed value is 119 (0x77).
  1089. */
  1090. int16_t midiCC;
  1091. /*!
  1092. * Currently mapped MIDI channel.
  1093. * Counts from 0 to 15.
  1094. */
  1095. uint8_t midiChannel;
  1096. } ParameterData;
  1097. /*!
  1098. * Parameter ranges.
  1099. */
  1100. typedef struct _ParameterRanges {
  1101. /*!
  1102. * Default value.
  1103. */
  1104. float def;
  1105. /*!
  1106. * Minimum value.
  1107. */
  1108. float min;
  1109. /*!
  1110. * Maximum value.
  1111. */
  1112. float max;
  1113. /*!
  1114. * Regular, single step value.
  1115. */
  1116. float step;
  1117. /*!
  1118. * Small step value.
  1119. */
  1120. float stepSmall;
  1121. /*!
  1122. * Large step value.
  1123. */
  1124. float stepLarge;
  1125. #ifdef __cplusplus
  1126. /*!
  1127. * Fix the default value within range.
  1128. */
  1129. void fixDefault() noexcept
  1130. {
  1131. fixValue(def);
  1132. }
  1133. /*!
  1134. * Fix a value within range.
  1135. */
  1136. void fixValue(float& value) const noexcept
  1137. {
  1138. if (value < min)
  1139. value = min;
  1140. else if (value > max)
  1141. value = max;
  1142. }
  1143. /*!
  1144. * Get a fixed value within range.
  1145. */
  1146. const float& getFixedValue(const float& value) const noexcept
  1147. {
  1148. if (value <= min)
  1149. return min;
  1150. if (value >= max)
  1151. return max;
  1152. return value;
  1153. }
  1154. /*!
  1155. * Get a value normalized to 0.0<->1.0.
  1156. */
  1157. float getNormalizedValue(const float& value) const noexcept
  1158. {
  1159. const float normValue((value - min) / (max - min));
  1160. if (normValue <= 0.0f)
  1161. return 0.0f;
  1162. if (normValue >= 1.0f)
  1163. return 1.0f;
  1164. return normValue;
  1165. }
  1166. /*!
  1167. * Get a value normalized to 0.0<->1.0, fixed within range.
  1168. */
  1169. float getFixedAndNormalizedValue(const float& value) const noexcept
  1170. {
  1171. if (value <= min)
  1172. return 0.0f;
  1173. if (value >= max)
  1174. return 1.0f;
  1175. const float normValue((value - min) / (max - min));
  1176. if (normValue <= 0.0f)
  1177. return 0.0f;
  1178. if (normValue >= 1.0f)
  1179. return 1.0f;
  1180. return normValue;
  1181. }
  1182. /*!
  1183. * Get a proper value previously normalized to 0.0<->1.0.
  1184. */
  1185. float getUnnormalizedValue(const float& value) const noexcept
  1186. {
  1187. if (value <= 0.0f)
  1188. return min;
  1189. if (value >= 1.0f)
  1190. return max;
  1191. return value * (max - min) + min;
  1192. }
  1193. /*!
  1194. * Get a logarithmic value previously normalized to 0.0<->1.0.
  1195. */
  1196. float getUnnormalizedLogValue(const float& value) const noexcept
  1197. {
  1198. if (value <= 0.0f)
  1199. return min;
  1200. if (value >= 1.0f)
  1201. return max;
  1202. float rmin = min;
  1203. if (std::abs(min) < std::numeric_limits<float>::epsilon())
  1204. rmin = 0.00001f;
  1205. return rmin * std::pow(max/rmin, value);
  1206. }
  1207. #endif /* __cplusplus */
  1208. } ParameterRanges;
  1209. /*!
  1210. * MIDI Program data.
  1211. */
  1212. typedef struct {
  1213. /*!
  1214. * MIDI bank.
  1215. */
  1216. uint32_t bank;
  1217. /*!
  1218. * MIDI program.
  1219. */
  1220. uint32_t program;
  1221. /*!
  1222. * MIDI program name.
  1223. */
  1224. const char* name;
  1225. } MidiProgramData;
  1226. /*!
  1227. * Custom data, used for saving key:value 'dictionaries'.
  1228. */
  1229. typedef struct {
  1230. /*!
  1231. * Value type, in URI form.
  1232. * @see CustomDataTypes
  1233. */
  1234. const char* type;
  1235. /*!
  1236. * Key.
  1237. * @see CustomDataKeys
  1238. */
  1239. const char* key;
  1240. /*!
  1241. * Value.
  1242. */
  1243. const char* value;
  1244. #ifdef __cplusplus
  1245. /*!
  1246. * Check if valid.
  1247. */
  1248. bool isValid() const noexcept
  1249. {
  1250. if (type == nullptr || type[0] == '\0') return false;
  1251. if (key == nullptr || key [0] == '\0') return false;
  1252. if (value == nullptr) return false;
  1253. return true;
  1254. }
  1255. #endif /* __cplusplus */
  1256. } CustomData;
  1257. /*!
  1258. * Engine driver device information.
  1259. */
  1260. typedef struct {
  1261. /*!
  1262. * This driver device hints.
  1263. * @see EngineDriverHints
  1264. */
  1265. uint hints;
  1266. /*!
  1267. * Available buffer sizes.
  1268. * Terminated with 0.
  1269. */
  1270. const uint32_t* bufferSizes;
  1271. /*!
  1272. * Available sample rates.
  1273. * Terminated with 0.0.
  1274. */
  1275. const double* sampleRates;
  1276. } EngineDriverDeviceInfo;
  1277. /** @} */
  1278. #ifdef __cplusplus
  1279. /* Forward declarations of commonly used Carla classes */
  1280. class CarlaEngine;
  1281. class CarlaEngineClient;
  1282. class CarlaPlugin;
  1283. /* End namespace */
  1284. CARLA_BACKEND_END_NAMESPACE
  1285. #endif
  1286. #endif /* CARLA_BACKEND_H_INCLUDED */