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.

811 lines
22KB

  1. /*
  2. * Carla Backend API
  3. * Copyright (C) 2011-2013 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 GPL.txt file
  16. */
  17. #ifndef __CARLA_BACKEND_HPP__
  18. #define __CARLA_BACKEND_HPP__
  19. #include "CarlaDefines.hpp"
  20. #ifdef CARLA_PROPER_CPP11_SUPPORT
  21. # include <cstdint>
  22. #else
  23. # include <stdint.h>
  24. #endif
  25. #define CARLA_BACKEND_START_NAMESPACE namespace CarlaBackend {
  26. #define CARLA_BACKEND_END_NAMESPACE }
  27. #define CARLA_BACKEND_USE_NAMESPACE using namespace CarlaBackend;
  28. #define STR_MAX 0xFF
  29. CARLA_BACKEND_START_NAMESPACE
  30. /*!
  31. * @defgroup CarlaBackendAPI Carla Backend API
  32. *
  33. * The Carla Backend API.\n
  34. * This is the base definitions for everything in the Carla code.
  35. *
  36. * @{
  37. */
  38. const unsigned int MAX_DEFAULT_PLUGINS = 99; //!< Maximum default number of loadable plugins
  39. const unsigned int MAX_RACK_PLUGINS = 16; //!< Maximum number of loadable plugins in rack mode
  40. const unsigned int MAX_PATCHBAY_PLUGINS = 255; //!< Maximum number of loadable plugins in patchbay mode
  41. const unsigned int MAX_DEFAULT_PARAMETERS = 200; //!< Maximum default number of parameters allowed.\see OPTION_MAX_PARAMETERS
  42. /*!
  43. * @defgroup PluginHints Plugin Hints
  44. *
  45. * Various plugin hints.
  46. * \see CarlaPlugin::hints()
  47. * @{
  48. */
  49. const unsigned int PLUGIN_IS_BRIDGE = 0x001; //!< Plugin is a bridge (ie, BridgePlugin). This hint is required because "bridge" itself is not a plugin type.
  50. const unsigned int PLUGIN_IS_RTSAFE = 0x002; //!< Plugin is hard real-time safe.
  51. const unsigned int PLUGIN_IS_SYNTH = 0x004; //!< Plugin is a synthesizer (produces sound).
  52. const unsigned int PLUGIN_HAS_GUI = 0x010; //!< Plugin has its own custom GUI.
  53. const unsigned int PLUGIN_HAS_GUI_AS_FILE = 0x020; //!< Plugin has custom GUI as a single file.
  54. const unsigned int PLUGIN_HAS_SINGLE_THREAD = 0x040; //!< Plugin needs a single thread for both DSP and UI events.
  55. const unsigned int PLUGIN_CAN_DRYWET = 0x100; //!< Plugin can make use of Dry/Wet controls.
  56. const unsigned int PLUGIN_CAN_VOLUME = 0x200; //!< Plugin can make use of Volume controls.
  57. const unsigned int PLUGIN_CAN_BALANCE = 0x400; //!< Plugin can make use of Left & Right Balance controls.
  58. const unsigned int PLUGIN_CAN_PANNING = 0x800; //!< Plugin can make use of Panning controls.
  59. /**@}*/
  60. /*!
  61. * @defgroup PluginOptions Plugin Options
  62. *
  63. * Various plugin options.
  64. * \see CarlaPlugin::availableOptions() and CarlaPlugin::options()
  65. * @{
  66. */
  67. const unsigned int PLUGIN_OPTION_FIXED_BUFFER = 0x001; //!< Use a constant, fixed-size audio buffer
  68. const unsigned int PLUGIN_OPTION_FORCE_STEREO = 0x002; //!< Force mono plugin as stereo
  69. const unsigned int PLUGIN_OPTION_MAP_PROGRAM_CHANGES = 0x004; //!< Map MIDI-Programs to plugin programs
  70. const unsigned int PLUGIN_OPTION_USE_CHUNKS = 0x008; //!< Use chunks to save data
  71. const unsigned int PLUGIN_OPTION_SEND_CONTROL_CHANGES = 0x010; //!< Send MIDI CC events
  72. const unsigned int PLUGIN_OPTION_SEND_CHANNEL_PRESSURE = 0x020; //!< Send MIDI channel pressure events
  73. const unsigned int PLUGIN_OPTION_SEND_NOTE_AFTERTOUCH = 0x040; //!< Send MIDI note aftertouch events
  74. const unsigned int PLUGIN_OPTION_SEND_PITCHBEND = 0x080; //!< Send MIDI pitchbend events
  75. const unsigned int PLUGIN_OPTION_SEND_ALL_SOUND_OFF = 0x100; //!< Send MIDI all sounds/notes off events, single-note offs otherwise
  76. /**@}*/
  77. /*!
  78. * @defgroup ParameterHints Parameter Hints
  79. *
  80. * Various parameter hints.
  81. * \see CarlaPlugin::parameterData()
  82. * @{
  83. */
  84. const unsigned int PARAMETER_IS_BOOLEAN = 0x01; //!< Parameter value is a boolean (always at minimum or maximum values).
  85. const unsigned int PARAMETER_IS_INTEGER = 0x02; //!< Parameter value is an integer.
  86. const unsigned int PARAMETER_IS_LOGARITHMIC = 0x04; //!< Parameter is logarithmic.
  87. const unsigned int PARAMETER_IS_ENABLED = 0x08; //!< Parameter is enabled and will be shown in the host built-in editor.
  88. const unsigned int PARAMETER_IS_AUTOMABLE = 0x10; //!< Parameter is automable (realtime safe)
  89. const unsigned int PARAMETER_USES_SAMPLERATE = 0x20; //!< Parameter needs sample rate to work (value and ranges are multiplied by SR, and must be divided by SR on save).
  90. const unsigned int PARAMETER_USES_SCALEPOINTS = 0x40; //!< Parameter uses scalepoints to define internal values in a meaningful way.
  91. const unsigned int PARAMETER_USES_CUSTOM_TEXT = 0x80; //!< Parameter uses custom text for displaying its value.\see CarlaPlugin::getParameterText()
  92. /**@}*/
  93. /*!
  94. * @defgroup PatchbayPortHints Patchbay Port Hints
  95. *
  96. * Various patchbay port hints.
  97. * @{
  98. */
  99. const unsigned int PATCHBAY_PORT_IS_INPUT = 0x1; //!< Patchbay port is input.
  100. const unsigned int PATCHBAY_PORT_IS_OUTPUT = 0x2; //!< Patchbay port is output.
  101. const unsigned int PATCHBAY_PORT_IS_AUDIO = 0x4; //!< Patchbay port is of Audio type.
  102. const unsigned int PATCHBAY_PORT_IS_MIDI = 0x8; //!< Patchbay port is of MIDI type.
  103. /**@}*/
  104. /*!
  105. * @defgroup CustomDataTypes Custom Data types
  106. *
  107. * The type defines how the \param value in CustomData is stored.
  108. *
  109. * Types are valid URIs.\n
  110. * Any non-string, non-simple type (not integral) is saved in a base64 encoded format.
  111. */
  112. const char* const CUSTOM_DATA_INVALID = nullptr; //!< Null or Invalid data.
  113. const char* const CUSTOM_DATA_CHUNK = "http://kxstudio.sf.net/ns/carla/chunk"; //!< Carla Chunk URI
  114. const char* const CUSTOM_DATA_STRING = "http://kxstudio.sf.net/ns/carla/string"; //!< Carla String URI
  115. /**@}*/
  116. /*!
  117. * The binary type of a plugin.
  118. */
  119. enum BinaryType {
  120. BINARY_NONE = 0, //!< Null binary type.
  121. BINARY_POSIX32 = 1, //!< POSIX 32bit.
  122. BINARY_POSIX64 = 2, //!< POSIX 64bit.
  123. BINARY_WIN32 = 3, //!< Windows 32bit.
  124. BINARY_WIN64 = 4, //!< Windows 64bit.
  125. BINARY_OTHER = 5 //!< Other.
  126. };
  127. /*!
  128. * All the available plugin types, as provided by subclasses of CarlaPlugin.\n
  129. * Some plugin classes might provide more than 1 plugin type.
  130. */
  131. enum PluginType {
  132. PLUGIN_NONE = 0, //!< Null plugin type
  133. PLUGIN_INTERNAL = 1, //!< Internal plugin
  134. PLUGIN_LADSPA = 2, //!< LADSPA plugin
  135. PLUGIN_DSSI = 3, //!< DSSI plugin
  136. PLUGIN_LV2 = 4, //!< LV2 plugin
  137. PLUGIN_VST = 5, //!< VST1/2 plugin
  138. PLUGIN_VST3 = 6, //!< VST3 plugin
  139. PLUGIN_GIG = 7, //!< GIG sound kit
  140. PLUGIN_SF2 = 8, //!< SF2 sound kit (aka SoundFont)
  141. PLUGIN_SFZ = 9 //!< SFZ sound kit
  142. };
  143. /*!
  144. * Plugin category, describing the funtionality of a plugin.\n
  145. * When a plugin fails to tell his own category, one is atributted to it based on its name.
  146. */
  147. enum PluginCategory {
  148. PLUGIN_CATEGORY_NONE = 0, //!< Null plugin category.
  149. PLUGIN_CATEGORY_SYNTH = 1, //!< A synthesizer or generator.
  150. PLUGIN_CATEGORY_DELAY = 2, //!< A delay or reverberator.
  151. PLUGIN_CATEGORY_EQ = 3, //!< An equalizer.
  152. PLUGIN_CATEGORY_FILTER = 4, //!< A filter.
  153. PLUGIN_CATEGORY_DYNAMICS = 5, //!< A 'dynamic' plugin (amplifier, compressor, gate, etc).
  154. PLUGIN_CATEGORY_MODULATOR = 6, //!< A 'modulator' plugin (chorus, flanger, phaser, etc).
  155. PLUGIN_CATEGORY_UTILITY = 7, //!< An 'utility' plugin (analyzer, converter, mixer, etc).
  156. PLUGIN_CATEGORY_OTHER = 8 //!< Misc plugin (used to check if the plugin has a category).
  157. };
  158. /*!
  159. * Plugin parameter type.
  160. */
  161. enum ParameterType {
  162. PARAMETER_UNKNOWN = 0, //!< Null parameter type.
  163. PARAMETER_INPUT = 1, //!< Input parameter.
  164. PARAMETER_OUTPUT = 2, //!< Ouput parameter.
  165. PARAMETER_LATENCY = 3, //!< Special latency parameter, used in LADSPA, DSSI and LV2 plugins.
  166. PARAMETER_SAMPLE_RATE = 4, //!< Special sample-rate parameter, used in LADSPA, DSSI and LV2 plugins.
  167. #ifdef WANT_LV2
  168. PARAMETER_LV2_FREEWHEEL = 5, //!< Special LV2 Plugin parameter used to report freewheel (offline) mode.
  169. PARAMETER_LV2_TIME = 6 //!< Special LV2 Plugin parameter used to report time information.
  170. #endif
  171. };
  172. /*!
  173. * Internal parameter indexes.\n
  174. * These are special parameters used internally, plugins do not know about their existence.
  175. */
  176. enum InternalParametersIndex {
  177. PARAMETER_NULL = -1, //!< Null parameter.
  178. PARAMETER_ACTIVE = -2, //!< Active parameter, can only be 'true' or 'false'; default is 'false'.
  179. PARAMETER_DRYWET = -3, //!< Dry/Wet parameter, range 0.0...1.0; default is 1.0.
  180. PARAMETER_VOLUME = -4, //!< Volume parameter, range 0.0...1.27; default is 1.0.
  181. PARAMETER_BALANCE_LEFT = -5, //!< Stereo Balance-Left parameter, range -1.0...1.0; default is -1.0.
  182. PARAMETER_BALANCE_RIGHT = -6, //!< Stereo Balance-Right parameter, range -1.0...1.0; default is 1.0.
  183. PARAMETER_PANNING = -7, //!< Mono Panning parameter, range -1.0...1.0; default is 0.0.
  184. PARAMETER_CTRL_CHANNEL = -8, //!< MIDI Control channel
  185. PARAMETER_MAX = -9 //!< Max value, defined for convenience
  186. };
  187. /*!
  188. * The icon of a patchbay client/group.
  189. */
  190. enum PatchbayIconType {
  191. PATCHBAY_ICON_APPLICATION = 0, //!< Generic application icon.
  192. PATCHBAY_ICON_HARDWARE = 1, //!< Hardware icon.
  193. PATCHBAY_ICON_PLUGIN = 2, //!< Plugin icon.
  194. PATCHBAY_ICON_DISTRHO = 3, //!< DISTRHO icon.
  195. PATCHBAY_ICON_FILE = 4 //!< File icon.
  196. };
  197. /*!
  198. * Options used in the CarlaEngine::setOption() and set_option() calls.\n
  199. * All options except paths must be set before initiliazing or after closing the engine.
  200. */
  201. enum OptionsType {
  202. /*!
  203. * Try to set the current process name.
  204. * \note Not available on all platforms.
  205. */
  206. OPTION_PROCESS_NAME = 0,
  207. /*!
  208. * Set the engine processing mode.\n
  209. * Default is PROCESS_MODE_CONTINUOUS_RACK.
  210. * \see ProcessMode
  211. */
  212. OPTION_PROCESS_MODE = 1,
  213. /*!
  214. * Set the engine transport mode.\n
  215. * Default is TRANSPORT_MODE_INTERNAL.
  216. * \see TransportMode
  217. */
  218. OPTION_TRANSPORT_MODE = 2,
  219. /*!
  220. * Force mono plugins as stereo, by running 2 instances at the same time.
  221. * \note Not supported by all plugins.
  222. */
  223. OPTION_FORCE_STEREO = 3,
  224. /*!
  225. * Use plugin bridges whenever possible.\n
  226. * Default is no, EXPERIMENTAL.
  227. */
  228. OPTION_PREFER_PLUGIN_BRIDGES = 4,
  229. /*!
  230. * Use OSC-UI bridges whenever possible, otherwise UIs will be handled in the main thread.\n
  231. * Default is yes.
  232. */
  233. OPTION_PREFER_UI_BRIDGES = 5,
  234. #ifdef WANT_DSSI
  235. /*!
  236. * Use (unofficial) dssi-vst chunks feature.\n
  237. * Default is no.
  238. */
  239. OPTION_USE_DSSI_VST_CHUNKS = 6,
  240. #endif
  241. /*!
  242. * Maximum number of parameters allowed.\n
  243. * Default is MAX_DEFAULT_PARAMETERS.
  244. */
  245. OPTION_MAX_PARAMETERS = 7,
  246. /*!
  247. * Timeout value in ms for how much to wait for OSC-Bridges to respond.\n
  248. * Default is 4000 (4 secs).
  249. */
  250. OPTION_OSC_UI_TIMEOUT = 8,
  251. /*!
  252. * JACK auto-connect to hardware ports.
  253. */
  254. OPTION_JACK_AUTOCONNECT = 9,
  255. /*!
  256. * JACK Transport master.
  257. */
  258. OPTION_JACK_TIMEMASTER = 10,
  259. #ifdef WANT_RTAUDIO
  260. /*!
  261. * RtAudio buffer size.
  262. */
  263. OPTION_RTAUDIO_BUFFER_SIZE = 11,
  264. /*!
  265. * RtAudio sample rate.
  266. */
  267. OPTION_RTAUDIO_SAMPLE_RATE = 12,
  268. /*!
  269. * RtAudio device.
  270. */
  271. OPTION_RTAUDIO_DEVICE = 13,
  272. #endif
  273. /*!
  274. * Set path to the backend resource files.\n
  275. * Default unset.
  276. *
  277. * \note Must be set for some internal plugins to work!
  278. */
  279. OPTION_PATH_RESOURCES = 14,
  280. #ifndef BUILD_BRIDGE
  281. /*!
  282. * Set path to the native plugin bridge executable.\n
  283. * Default unset.
  284. */
  285. OPTION_PATH_BRIDGE_NATIVE = 15,
  286. /*!
  287. * Set path to the POSIX 32bit plugin bridge executable.\n
  288. * Default unset.
  289. */
  290. OPTION_PATH_BRIDGE_POSIX32 = 16,
  291. /*!
  292. * Set path to the POSIX 64bit plugin bridge executable.\n
  293. * Default unset.
  294. */
  295. OPTION_PATH_BRIDGE_POSIX64 = 17,
  296. /*!
  297. * Set path to the Windows 32bit plugin bridge executable.\n
  298. * Default unset.
  299. */
  300. OPTION_PATH_BRIDGE_WIN32 = 18,
  301. /*!
  302. * Set path to the Windows 64bit plugin bridge executable.\n
  303. * Default unset.
  304. */
  305. OPTION_PATH_BRIDGE_WIN64 = 19,
  306. #endif
  307. #ifdef WANT_LV2
  308. /*!
  309. * Set path to the LV2 Gtk2 UI bridge executable.\n
  310. * Default unset.
  311. */
  312. OPTION_PATH_BRIDGE_LV2_GTK2 = 20,
  313. /*!
  314. * Set path to the LV2 Gtk3 UI bridge executable.\n
  315. * Default unset.
  316. */
  317. OPTION_PATH_BRIDGE_LV2_GTK3 = 21,
  318. /*!
  319. * Set path to the LV2 Qt4 UI bridge executable.\n
  320. * Default unset.
  321. */
  322. OPTION_PATH_BRIDGE_LV2_QT4 = 22,
  323. /*!
  324. * Set path to the LV2 Qt5 UI bridge executable.\n
  325. * Default unset.
  326. */
  327. OPTION_PATH_BRIDGE_LV2_QT5 = 23,
  328. /*!
  329. * Set path to the LV2 Cocoa UI bridge executable.\n
  330. * Default unset.
  331. */
  332. OPTION_PATH_BRIDGE_LV2_COCOA = 24,
  333. /*!
  334. * Set path to the LV2 Windows UI bridge executable.\n
  335. * Default unset.
  336. */
  337. OPTION_PATH_BRIDGE_LV2_WINDOWS = 25,
  338. /*!
  339. * Set path to the LV2 X11 UI bridge executable.\n
  340. * Default unset.
  341. */
  342. OPTION_PATH_BRIDGE_LV2_X11 = 26,
  343. #endif
  344. #ifdef WANT_VST
  345. /*!
  346. * Set path to the VST Cocoa UI bridge executable.\n
  347. * Default unset.
  348. */
  349. OPTION_PATH_BRIDGE_VST_COCOA = 27,
  350. /*!
  351. * Set path to the VST HWND UI bridge executable.\n
  352. * Default unset.
  353. */
  354. OPTION_PATH_BRIDGE_VST_HWND = 28,
  355. /*!
  356. * Set path to the VST X11 UI bridge executable.\n
  357. * Default unset.
  358. */
  359. OPTION_PATH_BRIDGE_VST_X11 = 29
  360. #endif
  361. };
  362. /*!
  363. * Opcodes sent from the engine callback to the GUI, as defined by CallbackFunc.
  364. *
  365. * \see CarlaEngine::setCallback() and set_callback_function()
  366. */
  367. enum CallbackType {
  368. /*!
  369. * Debug.\n
  370. * This opcode is undefined and used only for testing purposes.
  371. */
  372. CALLBACK_DEBUG = 0,
  373. /*!
  374. * A plugin has been added.
  375. * \param valueStr Plugin name
  376. */
  377. CALLBACK_PLUGIN_ADDED = 1,
  378. /*!
  379. * A plugin has been removed.
  380. */
  381. CALLBACK_PLUGIN_REMOVED = 2,
  382. /*!
  383. * A plugin has been renamed.
  384. * \param valueStr New name
  385. */
  386. CALLBACK_PLUGIN_RENAMED = 3,
  387. /*!
  388. * A parameter value has been changed.
  389. *
  390. * \param value1 Parameter index
  391. * \param value3 Value
  392. */
  393. CALLBACK_PARAMETER_VALUE_CHANGED = 4,
  394. /*!
  395. * A parameter default has changed.
  396. *
  397. * \param value1 Parameter index
  398. * \param value3 New default value
  399. */
  400. CALLBACK_PARAMETER_DEFAULT_CHANGED = 5,
  401. /*!
  402. * A parameter's MIDI channel has been changed.
  403. *
  404. * \param value1 Parameter index
  405. * \param value2 MIDI channel
  406. */
  407. CALLBACK_PARAMETER_MIDI_CHANNEL_CHANGED = 6,
  408. /*!
  409. * A parameter's MIDI CC has been changed.
  410. *
  411. * \param value1 Parameter index
  412. * \param value2 MIDI CC
  413. */
  414. CALLBACK_PARAMETER_MIDI_CC_CHANGED = 7,
  415. /*!
  416. * The current program has has been changed.
  417. *
  418. * \param value1 Program index
  419. */
  420. CALLBACK_PROGRAM_CHANGED = 8,
  421. /*!
  422. * The current MIDI program has been changed.
  423. *
  424. * \param value1 MIDI bank
  425. * \param value2 MIDI program
  426. */
  427. CALLBACK_MIDI_PROGRAM_CHANGED = 9,
  428. /*!
  429. * A note has been pressed.
  430. *
  431. * \param value1 Channel
  432. * \param value2 Note
  433. * \param value3 Velocity
  434. */
  435. CALLBACK_NOTE_ON = 10,
  436. /*!
  437. * A note has been released.
  438. *
  439. * \param value1 Channel
  440. * \param value2 Note
  441. */
  442. CALLBACK_NOTE_OFF = 11,
  443. /*!
  444. * The plugin's custom GUI state has changed.
  445. *
  446. * \param value1 State, as follows:\n
  447. * 0: GUI has been closed or hidden\n
  448. * 1: GUI has been shown\n
  449. * -1: GUI has crashed and should not be shown again
  450. */
  451. CALLBACK_SHOW_GUI = 12,
  452. /*!
  453. * The plugin needs update.
  454. */
  455. CALLBACK_UPDATE = 13,
  456. /*!
  457. * The plugin's data/information has changed.
  458. */
  459. CALLBACK_RELOAD_INFO = 14,
  460. /*!
  461. * The plugin's parameters have changed.
  462. */
  463. CALLBACK_RELOAD_PARAMETERS = 15,
  464. /*!
  465. * The plugin's programs have changed.
  466. */
  467. CALLBACK_RELOAD_PROGRAMS = 16,
  468. /*!
  469. * The plugin's state has changed.
  470. */
  471. CALLBACK_RELOAD_ALL = 17,
  472. /*!
  473. * Canvas client added
  474. *
  475. * \param value1 Client Id
  476. * \param value2 Client Icon
  477. * \param valueStr Client name
  478. */
  479. CALLBACK_PATCHBAY_CLIENT_ADDED = 18,
  480. /*!
  481. * Canvas client removed
  482. *
  483. * \param value1 Client Id
  484. */
  485. CALLBACK_PATCHBAY_CLIENT_REMOVED = 19,
  486. /*!
  487. * Canvas client renamed
  488. *
  489. * \param value1 Client Id
  490. * \param valueStr New client name
  491. */
  492. CALLBACK_PATCHBAY_CLIENT_RENAMED = 20,
  493. /*!
  494. * Canvas port added
  495. *
  496. * \param value1 Client Id
  497. * \param value2 Port Id
  498. * \param value3 Port flags
  499. * \param valueStr Port name
  500. */
  501. CALLBACK_PATCHBAY_PORT_ADDED = 21,
  502. /*!
  503. * Canvas port remvoed
  504. *
  505. * \param value1 Port Id
  506. */
  507. CALLBACK_PATCHBAY_PORT_REMOVED = 22,
  508. /*!
  509. * Canvas port renamed
  510. *
  511. * \param value1 Port Id
  512. * \param valueStr New port name
  513. */
  514. CALLBACK_PATCHBAY_PORT_RENAMED = 23,
  515. /*!
  516. * Canvas port connection added
  517. *
  518. * \param value1 Output port Id
  519. * \param value2 Input port Id
  520. */
  521. CALLBACK_PATCHBAY_CONNECTION_ADDED = 24,
  522. /*!
  523. * Canvas port connection removed
  524. *
  525. * \param value1 Output port Id
  526. * \param value2 Input port Id
  527. */
  528. CALLBACK_PATCHBAY_CONNECTION_REMOVED = 25,
  529. /*!
  530. * Engine buffer-size changed.
  531. */
  532. CALLBACK_BUFFER_SIZE_CHANGED = 26,
  533. /*!
  534. * Engine sample-rate changed.
  535. */
  536. CALLBACK_SAMPLE_RATE_CHANGED = 27,
  537. /*!
  538. * Engine process mode changed.
  539. *
  540. * \param value1 New process mode
  541. * \see ProcessMode
  542. */
  543. CALLBACK_PROCESS_MODE_CHANGED = 28,
  544. /*!
  545. * Non-Session-Manager Announce message.
  546. */
  547. CALLBACK_NSM_ANNOUNCE = 29,
  548. /*!
  549. * Non-Session-Manager Open message.
  550. */
  551. CALLBACK_NSM_OPEN = 30,
  552. /*!
  553. * Non-Session-Manager Save message.
  554. */
  555. CALLBACK_NSM_SAVE = 31,
  556. /*!
  557. * An error occurred, show \a valueStr as an error to user.
  558. */
  559. CALLBACK_ERROR = 32,
  560. /*!
  561. * Show \a valueStr as info to user.
  562. */
  563. CALLBACK_INFO = 33,
  564. /*!
  565. * The engine has crashed or malfunctioned and will no longer work.
  566. */
  567. CALLBACK_QUIT = 34
  568. };
  569. /*!
  570. * Engine process mode.
  571. *
  572. * \see OPTION_PROCESS_MODE
  573. */
  574. enum ProcessMode {
  575. PROCESS_MODE_SINGLE_CLIENT = 0, //!< Single client mode (dynamic input/outputs as needed by plugins)
  576. PROCESS_MODE_MULTIPLE_CLIENTS = 1, //!< Multiple client mode (1 master client + 1 client per plugin)
  577. PROCESS_MODE_CONTINUOUS_RACK = 2, //!< Single client, 'rack' mode. Processes plugins in order of Id, with forced stereo.
  578. PROCESS_MODE_PATCHBAY = 3, //!< Single client, 'patchbay' mode.
  579. PROCESS_MODE_BRIDGE = 4 //!< Special mode, used in plugin-bridges only.
  580. };
  581. /*!
  582. * All the available transport modes
  583. */
  584. enum TransportMode {
  585. TRANSPORT_MODE_INTERNAL = 0, //!< Internal transport mode.
  586. TRANSPORT_MODE_JACK = 1, //!< Transport from JACK, only available if driver name is "JACK"
  587. TRANSPORT_MODE_PLUGIN = 2, //!< Transport from host, used when Carla is a plugin
  588. TRANSPORT_MODE_BRIDGE = 3 //!< Special mode, used in plugin-bridges only.
  589. };
  590. /*!
  591. * Callback function the engine will call when something interesting happens.
  592. *
  593. * \see CallbackType and set_callback_function()
  594. */
  595. typedef void (*CallbackFunc)(void* ptr, CallbackType action, unsigned int pluginId, int value1, int value2, float value3, const char* valueStr);
  596. /*!
  597. * Parameter data
  598. */
  599. struct ParameterData {
  600. ParameterType type;
  601. int32_t index;
  602. int32_t rindex;
  603. uint32_t hints;
  604. uint8_t midiChannel;
  605. int16_t midiCC;
  606. #ifndef DOXYGEN
  607. ParameterData()
  608. : type(PARAMETER_UNKNOWN),
  609. index(PARAMETER_NULL),
  610. rindex(-1),
  611. hints(0x0),
  612. midiChannel(0),
  613. midiCC(-1) {}
  614. #endif
  615. };
  616. /*!
  617. * Parameter ranges
  618. */
  619. struct ParameterRanges {
  620. float def;
  621. float min;
  622. float max;
  623. float step;
  624. float stepSmall;
  625. float stepLarge;
  626. #ifndef DOXYGEN
  627. ParameterRanges()
  628. : def(0.0f),
  629. min(0.0f),
  630. max(1.0f),
  631. step(0.01f),
  632. stepSmall(0.0001f),
  633. stepLarge(0.1f) {}
  634. #endif
  635. void fixDefault()
  636. {
  637. fixValue(def);
  638. }
  639. void fixValue(float& value) const
  640. {
  641. if (value < min)
  642. value = min;
  643. else if (value > max)
  644. value = max;
  645. }
  646. float fixValue(const float& value) const
  647. {
  648. if (value < min)
  649. return min;
  650. else if (value > max)
  651. return max;
  652. return value;
  653. }
  654. float normalizeValue(const float& value) const
  655. {
  656. float newValue = (value - min) / (max - min);
  657. if (newValue < 0.0f)
  658. newValue = 0.0f;
  659. else if (newValue > 1.0f)
  660. newValue = 1.0f;
  661. return newValue;
  662. }
  663. float unnormalizeValue(const float& value) const
  664. {
  665. return value * (max - min) + min;
  666. }
  667. };
  668. /*!
  669. * MIDI Program data
  670. */
  671. struct MidiProgramData {
  672. uint32_t bank;
  673. uint32_t program;
  674. const char* name;
  675. #ifndef DOXYGEN
  676. MidiProgramData()
  677. : bank(0),
  678. program(0),
  679. name(nullptr) {}
  680. #endif
  681. };
  682. /*!
  683. * Custom data, saving key:value 'dictionaries'.\n
  684. * \a type is an URI which defines the \a value type.
  685. *
  686. * \see CustomDataTypes
  687. */
  688. struct CustomData {
  689. const char* type;
  690. const char* key;
  691. const char* value;
  692. #ifndef DOXYGEN
  693. CustomData()
  694. : type(nullptr),
  695. key(nullptr),
  696. value(nullptr) {}
  697. #endif
  698. };
  699. /**@}*/
  700. // forward declarations of commonly used Carla classes
  701. class CarlaEngine;
  702. class CarlaPlugin;
  703. CARLA_BACKEND_END_NAMESPACE
  704. #endif // __CARLA_BACKEND_HPP__