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.

834 lines
24KB

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