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.

2012 lines
64KB

  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. # Carla Backend code
  4. # Copyright (C) 2011-2014 Filipe Coelho <falktx@falktx.com>
  5. #
  6. # This program is free software; you can redistribute it and/or
  7. # modify it under the terms of the GNU General Public License as
  8. # published by the Free Software Foundation; either version 2 of
  9. # the License, or any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # For a full copy of the GNU General Public License see the doc/GPL.txt file.
  17. # ------------------------------------------------------------------------------------------------------------
  18. # Imports (Global)
  19. from ctypes import *
  20. from platform import architecture
  21. from sys import platform, maxsize
  22. # ------------------------------------------------------------------------------------------------------------
  23. # 64bit check
  24. kIs64bit = bool(architecture()[0] == "64bit" and maxsize > 2**32)
  25. # ------------------------------------------------------------------------------------------------------------
  26. # Define custom types
  27. c_enum = c_int
  28. c_uintptr = c_uint64 if kIs64bit else c_uint32
  29. # ------------------------------------------------------------------------------------------------------------
  30. # Set Platform
  31. if platform == "darwin":
  32. HAIKU = False
  33. LINUX = False
  34. MACOS = True
  35. WINDOWS = False
  36. elif "haiku" in platform:
  37. HAIKU = True
  38. LINUX = False
  39. MACOS = False
  40. WINDOWS = False
  41. elif "linux" in platform:
  42. HAIKU = False
  43. LINUX = True
  44. MACOS = False
  45. WINDOWS = False
  46. elif platform in ("win32", "win64", "cygwin"):
  47. HAIKU = False
  48. LINUX = False
  49. MACOS = False
  50. WINDOWS = True
  51. else:
  52. HAIKU = False
  53. LINUX = False
  54. MACOS = False
  55. WINDOWS = False
  56. # ------------------------------------------------------------------------------------------------------------
  57. # Convert a ctypes c_char_p into a python string
  58. def charPtrToString(value):
  59. if not value:
  60. return ""
  61. if isinstance(value, str):
  62. return value
  63. return value.decode("utf-8", errors="ignore")
  64. # ------------------------------------------------------------------------------------------------------------
  65. # Convert a ctypes POINTER(c_char_p) into a python string list
  66. def charPtrPtrToStringList(charPtrPtr):
  67. if not charPtrPtr:
  68. return []
  69. i = 0
  70. charPtr = charPtrPtr[0]
  71. strList = []
  72. while charPtr:
  73. strList.append(charPtr.decode("utf-8", errors="ignore"))
  74. i += 1
  75. charPtr = charPtrPtr[i]
  76. return strList
  77. # ------------------------------------------------------------------------------------------------------------
  78. # Convert a ctypes POINTER(c_<num>) into a python number list
  79. def numPtrToList(numPtr):
  80. if not numPtr:
  81. return []
  82. i = 0
  83. num = numPtr[0] #.value
  84. numList = []
  85. while num not in (0, 0.0):
  86. numList.append(num)
  87. i += 1
  88. num = numPtr[i] #.value
  89. return numList
  90. # ------------------------------------------------------------------------------------------------------------
  91. # Convert a ctypes value into a python one
  92. c_int_types = (c_int, c_int8, c_int16, c_int32, c_int64, c_uint, c_uint8, c_uint16, c_uint32, c_uint64, c_long, c_longlong)
  93. c_float_types = (c_float, c_double, c_longdouble)
  94. c_intp_types = tuple(POINTER(i) for i in c_int_types)
  95. c_floatp_types = tuple(POINTER(i) for i in c_float_types)
  96. def toPythonType(value, attr):
  97. if isinstance(value, (bool, int, float)):
  98. return value
  99. if isinstance(value, bytes):
  100. return charPtrToString(value)
  101. if isinstance(value, c_intp_types) or isinstance(value, c_floatp_types):
  102. return numPtrToList(value)
  103. if isinstance(value, POINTER(c_char_p)):
  104. return charPtrPtrToStringList(value)
  105. print("..............", attr, ".....................", value, ":", type(value))
  106. return value
  107. # ------------------------------------------------------------------------------------------------------------
  108. # Convert a ctypes struct into a python dict
  109. def structToDict(struct):
  110. return dict((attr, toPythonType(getattr(struct, attr), attr)) for attr, value in struct._fields_)
  111. # ------------------------------------------------------------------------------------------------------------
  112. # Carla Backend API (base definitions)
  113. # Maximum default number of loadable plugins.
  114. MAX_DEFAULT_PLUGINS = 99
  115. # Maximum number of loadable plugins in rack mode.
  116. MAX_RACK_PLUGINS = 16
  117. # Maximum number of loadable plugins in patchbay mode.
  118. MAX_PATCHBAY_PLUGINS = 255
  119. # Maximum default number of parameters allowed.
  120. # @see ENGINE_OPTION_MAX_PARAMETERS
  121. MAX_DEFAULT_PARAMETERS = 200
  122. # ------------------------------------------------------------------------------------------------------------
  123. # Engine Driver Device Hints
  124. # Various engine driver device hints.
  125. # @see carla_get_engine_driver_device_info()
  126. # Engine driver device has custom control-panel.
  127. ENGINE_DRIVER_DEVICE_HAS_CONTROL_PANEL = 0x1
  128. # Engine driver device can use a triple-buffer (3 number of periods instead of the usual 2).
  129. # @see ENGINE_OPTION_AUDIO_NUM_PERIODS
  130. ENGINE_DRIVER_DEVICE_CAN_TRIPLE_BUFFER = 0x2
  131. # Engine driver device can change buffer-size on the fly.
  132. # @see ENGINE_OPTION_AUDIO_BUFFER_SIZE
  133. ENGINE_DRIVER_DEVICE_VARIABLE_BUFFER_SIZE = 0x4
  134. # Engine driver device can change sample-rate on the fly.
  135. # @see ENGINE_OPTION_AUDIO_SAMPLE_RATE
  136. ENGINE_DRIVER_DEVICE_VARIABLE_SAMPLE_RATE = 0x8
  137. # ------------------------------------------------------------------------------------------------------------
  138. # Plugin Hints
  139. # Various plugin hints.
  140. # @see carla_get_plugin_info()
  141. # Plugin is a bridge.
  142. # This hint is required because "bridge" itself is not a plugin type.
  143. PLUGIN_IS_BRIDGE = 0x001
  144. # Plugin is hard real-time safe.
  145. PLUGIN_IS_RTSAFE = 0x002
  146. # Plugin is a synth (produces sound).
  147. PLUGIN_IS_SYNTH = 0x004
  148. # Plugin has its own custom UI.
  149. # @see carla_show_custom_ui()
  150. PLUGIN_HAS_CUSTOM_UI = 0x008
  151. # Plugin can use internal Dry/Wet control.
  152. PLUGIN_CAN_DRYWET = 0x010
  153. # Plugin can use internal Volume control.
  154. PLUGIN_CAN_VOLUME = 0x020
  155. # Plugin can use internal (Stereo) Balance controls.
  156. PLUGIN_CAN_BALANCE = 0x040
  157. # Plugin can use internal (Mono) Panning control.
  158. PLUGIN_CAN_PANNING = 0x080
  159. # Plugin needs a constant, fixed-size audio buffer.
  160. PLUGIN_NEEDS_FIXED_BUFFERS = 0x100
  161. # Plugin needs all UI events in a single/main thread.
  162. PLUGIN_NEEDS_SINGLE_THREAD = 0x200
  163. # ------------------------------------------------------------------------------------------------------------
  164. # Plugin Options
  165. # Various plugin options.
  166. # @see carla_get_plugin_info() and carla_set_option()
  167. # Use constant/fixed-size audio buffers.
  168. PLUGIN_OPTION_FIXED_BUFFERS = 0x001
  169. # Force mono plugin as stereo.
  170. PLUGIN_OPTION_FORCE_STEREO = 0x002
  171. # Map MIDI programs to plugin programs.
  172. PLUGIN_OPTION_MAP_PROGRAM_CHANGES = 0x004
  173. # Use chunks to save and restore data.
  174. PLUGIN_OPTION_USE_CHUNKS = 0x008
  175. # Send MIDI control change events.
  176. PLUGIN_OPTION_SEND_CONTROL_CHANGES = 0x010
  177. # Send MIDI channel pressure events.
  178. PLUGIN_OPTION_SEND_CHANNEL_PRESSURE = 0x020
  179. # Send MIDI note after-touch events.
  180. PLUGIN_OPTION_SEND_NOTE_AFTERTOUCH = 0x040
  181. # Send MIDI pitch-bend events.
  182. PLUGIN_OPTION_SEND_PITCHBEND = 0x080
  183. # Send MIDI all-sounds/notes-off events, single note-offs otherwise.
  184. PLUGIN_OPTION_SEND_ALL_SOUND_OFF = 0x100
  185. # Send MIDI CC automation output feedback.
  186. PLUGIN_OPTION_SEND_FEEDBACK = 0x200
  187. # ------------------------------------------------------------------------------------------------------------
  188. # Parameter Hints
  189. # Various parameter hints.
  190. # @see CarlaPlugin::getParameterData() and carla_get_parameter_data()
  191. # Parameter value is boolean.
  192. PARAMETER_IS_BOOLEAN = 0x001
  193. # Parameter value is integer.
  194. PARAMETER_IS_INTEGER = 0x002
  195. # Parameter value is logarithmic.
  196. PARAMETER_IS_LOGARITHMIC = 0x004
  197. # Parameter is enabled.
  198. # It can be viewed, changed and stored.
  199. PARAMETER_IS_ENABLED = 0x010
  200. # Parameter is automable (real-time safe).
  201. PARAMETER_IS_AUTOMABLE = 0x020
  202. # Parameter is read-only.
  203. # It cannot be changed.
  204. PARAMETER_IS_READ_ONLY = 0x040
  205. # Parameter needs sample rate to work.
  206. # Value and ranges are multiplied by sample rate on usage and divided by sample rate on save.
  207. PARAMETER_USES_SAMPLERATE = 0x100
  208. # Parameter uses scale points to define internal values in a meaningful way.
  209. PARAMETER_USES_SCALEPOINTS = 0x200
  210. # Parameter uses custom text for displaying its value.
  211. # @see carla_get_parameter_text()
  212. PARAMETER_USES_CUSTOM_TEXT = 0x400
  213. # ------------------------------------------------------------------------------------------------------------
  214. # Patchbay Port Hints
  215. # Various patchbay port hints.
  216. # Patchbay port is input.
  217. # When this hint is not set, port is assumed to be output.
  218. PATCHBAY_PORT_IS_INPUT = 0x1
  219. # Patchbay port is of Audio type.
  220. PATCHBAY_PORT_TYPE_AUDIO = 0x2
  221. # Patchbay port is of CV type (Control Voltage).
  222. PATCHBAY_PORT_TYPE_CV = 0x4
  223. # Patchbay port is of MIDI type.
  224. PATCHBAY_PORT_TYPE_MIDI = 0x8
  225. # ------------------------------------------------------------------------------------------------------------
  226. # Custom Data Types
  227. # These types define how the value in the CustomData struct is stored.
  228. # @see CustomData.type
  229. # Boolean string type URI.
  230. # Only "true" and "false" are valid values.
  231. CUSTOM_DATA_TYPE_BOOLEAN = "http://kxstudio.sf.net/ns/carla/boolean"
  232. # Chunk type URI.
  233. CUSTOM_DATA_TYPE_CHUNK = "http://kxstudio.sf.net/ns/carla/chunk"
  234. # String type URI.
  235. CUSTOM_DATA_TYPE_STRING = "http://kxstudio.sf.net/ns/carla/string"
  236. # ------------------------------------------------------------------------------------------------------------
  237. # Custom Data Keys
  238. # Pre-defined keys used internally in Carla.
  239. # @see CustomData.key
  240. # Plugin options key.
  241. CUSTOM_DATA_KEY_PLUGIN_OPTIONS = "CarlaPluginOptions"
  242. # UI position key.
  243. CUSTOM_DATA_KEY_UI_POSITION = "CarlaUiPosition"
  244. # UI size key.
  245. CUSTOM_DATA_KEY_UI_SIZE = "CarlaUiSize"
  246. # UI visible key.
  247. CUSTOM_DATA_KEY_UI_VISIBLE = "CarlaUiVisible"
  248. # ------------------------------------------------------------------------------------------------------------
  249. # Binary Type
  250. # The binary type of a plugin.
  251. # Null binary type.
  252. BINARY_NONE = 0
  253. # POSIX 32bit binary.
  254. BINARY_POSIX32 = 1
  255. # POSIX 64bit binary.
  256. BINARY_POSIX64 = 2
  257. # Windows 32bit binary.
  258. BINARY_WIN32 = 3
  259. # Windows 64bit binary.
  260. BINARY_WIN64 = 4
  261. # Other binary type.
  262. BINARY_OTHER = 5
  263. # ------------------------------------------------------------------------------------------------------------
  264. # Plugin Type
  265. # Plugin type.
  266. # Some files are handled as if they were plugins.
  267. # Null plugin type.
  268. PLUGIN_NONE = 0
  269. # Internal plugin.
  270. PLUGIN_INTERNAL = 1
  271. # LADSPA plugin.
  272. PLUGIN_LADSPA = 2
  273. # DSSI plugin.
  274. PLUGIN_DSSI = 3
  275. # LV2 plugin.
  276. PLUGIN_LV2 = 4
  277. # VST plugin.
  278. PLUGIN_VST = 5
  279. # VST3 plugin.
  280. PLUGIN_VST3 = 6
  281. # AU plugin.
  282. # @note MacOS only
  283. PLUGIN_AU = 7
  284. # JACK plugin.
  285. PLUGIN_JACK = 8
  286. # ReWire plugin.
  287. # @note Windows and MacOS only
  288. PLUGIN_REWIRE = 9
  289. # Single CSD file (Csound).
  290. PLUGIN_FILE_CSD = 10
  291. # Single GIG file.
  292. PLUGIN_FILE_GIG = 11
  293. # Single SF2 file (SoundFont).
  294. PLUGIN_FILE_SF2 = 12
  295. # Single SFZ file.
  296. PLUGIN_FILE_SFZ = 13
  297. # ------------------------------------------------------------------------------------------------------------
  298. # Plugin Category
  299. # Plugin category, which describes the functionality of a plugin.
  300. # Null plugin category.
  301. PLUGIN_CATEGORY_NONE = 0
  302. # A synthesizer or generator.
  303. PLUGIN_CATEGORY_SYNTH = 1
  304. # A delay or reverb.
  305. PLUGIN_CATEGORY_DELAY = 2
  306. # An equalizer.
  307. PLUGIN_CATEGORY_EQ = 3
  308. # A filter.
  309. PLUGIN_CATEGORY_FILTER = 4
  310. # A distortion plugin.
  311. PLUGIN_CATEGORY_DISTORTION = 5
  312. # A 'dynamic' plugin (amplifier, compressor, gate, etc).
  313. PLUGIN_CATEGORY_DYNAMICS = 6
  314. # A 'modulator' plugin (chorus, flanger, phaser, etc).
  315. PLUGIN_CATEGORY_MODULATOR = 7
  316. # An 'utility' plugin (analyzer, converter, mixer, etc).
  317. PLUGIN_CATEGORY_UTILITY = 8
  318. # Miscellaneous plugin (used to check if the plugin has a category).
  319. PLUGIN_CATEGORY_OTHER = 9
  320. # ------------------------------------------------------------------------------------------------------------
  321. # Parameter Type
  322. # Plugin parameter type.
  323. # Null parameter type.
  324. PARAMETER_UNKNOWN = 0
  325. # Input parameter.
  326. PARAMETER_INPUT = 1
  327. # Ouput parameter.
  328. PARAMETER_OUTPUT = 2
  329. # ------------------------------------------------------------------------------------------------------------
  330. # Internal Parameter Index
  331. # Special parameters used internally in Carla.
  332. # Plugins do not know about their existence.
  333. # Null parameter.
  334. PARAMETER_NULL = -1
  335. # Active parameter, boolean type.
  336. # Default is 'false'.
  337. PARAMETER_ACTIVE = -2
  338. # Dry/Wet parameter.
  339. # Range 0.0...1.0; default is 1.0.
  340. PARAMETER_DRYWET = -3
  341. # Volume parameter.
  342. # Range 0.0...1.27; default is 1.0.
  343. PARAMETER_VOLUME = -4
  344. # Stereo Balance-Left parameter.
  345. # Range -1.0...1.0; default is -1.0.
  346. PARAMETER_BALANCE_LEFT = -5
  347. # Stereo Balance-Right parameter.
  348. # Range -1.0...1.0; default is 1.0.
  349. PARAMETER_BALANCE_RIGHT = -6
  350. # Mono Panning parameter.
  351. # Range -1.0...1.0; default is 0.0.
  352. PARAMETER_PANNING = -7
  353. # MIDI Control channel, integer type.
  354. # Range -1...15 (-1 = off).
  355. PARAMETER_CTRL_CHANNEL = -8
  356. # Max value, defined only for convenience.
  357. PARAMETER_MAX = -9
  358. # ------------------------------------------------------------------------------------------------------------
  359. # Engine Callback Opcode
  360. # Engine callback opcodes.
  361. # Front-ends must never block indefinitely during a callback.
  362. # @see EngineCallbackFunc and carla_set_engine_callback()
  363. # Debug.
  364. # This opcode is undefined and used only for testing purposes.
  365. ENGINE_CALLBACK_DEBUG = 0
  366. # A plugin has been added.
  367. # @param pluginId Plugin Id
  368. # @param valueStr Plugin name
  369. ENGINE_CALLBACK_PLUGIN_ADDED = 1
  370. # A plugin has been removed.
  371. # @param pluginId Plugin Id
  372. ENGINE_CALLBACK_PLUGIN_REMOVED = 2
  373. # A plugin has been renamed.
  374. # @param pluginId Plugin Id
  375. # @param valueStr New plugin name
  376. ENGINE_CALLBACK_PLUGIN_RENAMED = 3
  377. # A plugin has become unavailable.
  378. # @param pluginId Plugin Id
  379. # @param valueStr Related error string
  380. ENGINE_CALLBACK_PLUGIN_UNAVAILABLE = 4
  381. # A parameter value has changed.
  382. # @param pluginId Plugin Id
  383. # @param value1 Parameter index
  384. # @param value3 New parameter value
  385. ENGINE_CALLBACK_PARAMETER_VALUE_CHANGED = 5
  386. # A parameter default has changed.
  387. # @param pluginId Plugin Id
  388. # @param value1 Parameter index
  389. # @param value3 New default value
  390. ENGINE_CALLBACK_PARAMETER_DEFAULT_CHANGED = 6
  391. # A parameter's MIDI CC has changed.
  392. # @param pluginId Plugin Id
  393. # @param value1 Parameter index
  394. # @param value2 New MIDI CC
  395. ENGINE_CALLBACK_PARAMETER_MIDI_CC_CHANGED = 7
  396. # A parameter's MIDI channel has changed.
  397. # @param pluginId Plugin Id
  398. # @param value1 Parameter index
  399. # @param value2 New MIDI channel
  400. ENGINE_CALLBACK_PARAMETER_MIDI_CHANNEL_CHANGED = 8
  401. # The current program of a plugin has changed.
  402. # @param pluginId Plugin Id
  403. # @param value1 New program index
  404. ENGINE_CALLBACK_PROGRAM_CHANGED = 9
  405. # The current MIDI program of a plugin has changed.
  406. # @param pluginId Plugin Id
  407. # @param value1 New MIDI program index
  408. ENGINE_CALLBACK_MIDI_PROGRAM_CHANGED = 10
  409. # A plugin's custom UI state has changed.
  410. # @param pluginId Plugin Id
  411. # @param value1 New state, as follows:
  412. # 0: UI is now hidden
  413. # 1: UI is now visible
  414. # -1: UI has crashed and should not be shown again
  415. ENGINE_CALLBACK_UI_STATE_CHANGED = 11
  416. # A note has been pressed.
  417. # @param pluginId Plugin Id
  418. # @param value1 Channel
  419. # @param value2 Note
  420. # @param value3 Velocity
  421. ENGINE_CALLBACK_NOTE_ON = 12
  422. # A note has been released.
  423. # @param pluginId Plugin Id
  424. # @param value1 Channel
  425. # @param value2 Note
  426. ENGINE_CALLBACK_NOTE_OFF = 13
  427. # A plugin needs update.
  428. # @param pluginId Plugin Id
  429. ENGINE_CALLBACK_UPDATE = 14
  430. # A plugin's data/information has changed.
  431. # @param pluginId Plugin Id
  432. ENGINE_CALLBACK_RELOAD_INFO = 15
  433. # A plugin's parameters have changed.
  434. # @param pluginId Plugin Id
  435. ENGINE_CALLBACK_RELOAD_PARAMETERS = 16
  436. # A plugin's programs have changed.
  437. # @param pluginId Plugin Id
  438. ENGINE_CALLBACK_RELOAD_PROGRAMS = 17
  439. # A plugin state has changed.
  440. # @param pluginId Plugin Id
  441. ENGINE_CALLBACK_RELOAD_ALL = 18
  442. # A patchbay client has been added.
  443. # @param pluginId Client Id
  444. # @param value1 Client icon
  445. # @param value2 Plugin Id (-1 if not a plugin)
  446. # @param valueStr Client name
  447. # @see PatchbayIcon
  448. ENGINE_CALLBACK_PATCHBAY_CLIENT_ADDED = 19
  449. # A patchbay client has been removed.
  450. # @param pluginId Client Id
  451. ENGINE_CALLBACK_PATCHBAY_CLIENT_REMOVED = 20
  452. # A patchbay client has been renamed.
  453. # @param pluginId Client Id
  454. # @param valueStr New client name
  455. ENGINE_CALLBACK_PATCHBAY_CLIENT_RENAMED = 21
  456. # A patchbay client data has changed.
  457. # @param pluginId Client Id
  458. # @param value1 New icon
  459. # @param value2 New plugin Id (-1 if not a plugin)
  460. # @see PatchbayIcon
  461. ENGINE_CALLBACK_PATCHBAY_CLIENT_DATA_CHANGED = 22
  462. # A patchbay port has been added.
  463. # @param pluginId Client Id
  464. # @param value1 Port Id
  465. # @param value2 Port hints
  466. # @param valueStr Port name
  467. # @see PatchbayPortHints
  468. ENGINE_CALLBACK_PATCHBAY_PORT_ADDED = 23
  469. # A patchbay port has been removed.
  470. # @param pluginId Client Id
  471. # @param value1 Port Id
  472. ENGINE_CALLBACK_PATCHBAY_PORT_REMOVED = 24
  473. # A patchbay port has been renamed.
  474. # @param pluginId Client Id
  475. # @param value1 Port Id
  476. # @param valueStr New port name
  477. ENGINE_CALLBACK_PATCHBAY_PORT_RENAMED = 25
  478. # A patchbay connection has been added.
  479. # @param pluginId Connection Id
  480. # @param valueStr Out group, port plus in group and port, in "og:op:ig:ip" syntax.
  481. ENGINE_CALLBACK_PATCHBAY_CONNECTION_ADDED = 26
  482. # A patchbay connection has been removed.
  483. # @param pluginId Connection Id
  484. ENGINE_CALLBACK_PATCHBAY_CONNECTION_REMOVED = 27
  485. # Engine started.
  486. # @param value1 Process mode
  487. # @param value2 Transport mode
  488. # @param valuestr Engine driver
  489. # @see EngineProcessMode
  490. # @see EngineTransportMode
  491. ENGINE_CALLBACK_ENGINE_STARTED = 28
  492. # Engine stopped.
  493. ENGINE_CALLBACK_ENGINE_STOPPED = 29
  494. # Engine process mode has changed.
  495. # @param value1 New process mode
  496. # @see EngineProcessMode
  497. ENGINE_CALLBACK_PROCESS_MODE_CHANGED = 30
  498. # Engine transport mode has changed.
  499. # @param value1 New transport mode
  500. # @see EngineTransportMode
  501. ENGINE_CALLBACK_TRANSPORT_MODE_CHANGED = 31
  502. # Engine buffer-size changed.
  503. # @param value1 New buffer size
  504. ENGINE_CALLBACK_BUFFER_SIZE_CHANGED = 32
  505. # Engine sample-rate changed.
  506. # @param value3 New sample rate
  507. ENGINE_CALLBACK_SAMPLE_RATE_CHANGED = 33
  508. # Idle frontend.
  509. # This is used by the engine during long operations that might block the frontend,
  510. # giving it the possibility to idle while the operation is still in place.
  511. ENGINE_CALLBACK_IDLE = 34
  512. # Show a message as information.
  513. # @param valueStr The message
  514. ENGINE_CALLBACK_INFO = 35
  515. # Show a message as an error.
  516. # @param valueStr The message
  517. ENGINE_CALLBACK_ERROR = 36
  518. # The engine has crashed or malfunctioned and will no longer work.
  519. ENGINE_CALLBACK_QUIT = 37
  520. # ------------------------------------------------------------------------------------------------------------
  521. # Engine Option
  522. # Engine options.
  523. # @see carla_set_engine_option()
  524. # Debug.
  525. # This option is undefined and used only for testing purposes.
  526. ENGINE_OPTION_DEBUG = 0
  527. # Set the engine processing mode.
  528. # Default is ENGINE_PROCESS_MODE_MULTIPLE_CLIENTS on Linux and ENGINE_PROCESS_MODE_CONTINUOUS_RACK for all other OSes.
  529. # @see EngineProcessMode
  530. ENGINE_OPTION_PROCESS_MODE = 1
  531. # Set the engine transport mode.
  532. # Default is ENGINE_TRANSPORT_MODE_JACK on Linux and ENGINE_TRANSPORT_MODE_INTERNAL for all other OSes.
  533. # @see EngineTransportMode
  534. ENGINE_OPTION_TRANSPORT_MODE = 2
  535. # Force mono plugins as stereo, by running 2 instances at the same time.
  536. # Default is false, but always true when process mode is ENGINE_PROCESS_MODE_CONTINUOUS_RACK.
  537. # @note Not supported by all plugins
  538. # @see PLUGIN_OPTION_FORCE_STEREO
  539. ENGINE_OPTION_FORCE_STEREO = 3
  540. # Use plugin bridges whenever possible.
  541. # Default is no, EXPERIMENTAL.
  542. ENGINE_OPTION_PREFER_PLUGIN_BRIDGES = 4
  543. # Use UI bridges whenever possible, otherwise UIs will be directly handled in the main backend thread.
  544. # Default is yes.
  545. ENGINE_OPTION_PREFER_UI_BRIDGES = 5
  546. # Make custom plugin UIs always-on-top.
  547. # Default is yes.
  548. ENGINE_OPTION_UIS_ALWAYS_ON_TOP = 6
  549. # Maximum number of parameters allowed.
  550. # Default is MAX_DEFAULT_PARAMETERS.
  551. ENGINE_OPTION_MAX_PARAMETERS = 7
  552. # Timeout value for how much to wait for UI bridges to respond, in milliseconds.
  553. # Default is 4000 (4 seconds).
  554. ENGINE_OPTION_UI_BRIDGES_TIMEOUT = 8
  555. # Number of audio periods.
  556. # Default is 2.
  557. ENGINE_OPTION_AUDIO_NUM_PERIODS = 9
  558. # Audio buffer size.
  559. # Default is 512.
  560. ENGINE_OPTION_AUDIO_BUFFER_SIZE = 10
  561. # Audio sample rate.
  562. # Default is 44100.
  563. ENGINE_OPTION_AUDIO_SAMPLE_RATE = 11
  564. # Audio device (within a driver).
  565. # Default unset.
  566. ENGINE_OPTION_AUDIO_DEVICE = 12
  567. # Set data needed for NSM support.
  568. ENGINE_OPTION_NSM_INIT = 13
  569. # Set path to the binary files.
  570. # Default unset.
  571. # @note Must be set for plugin and UI bridges to work
  572. ENGINE_OPTION_PATH_BINARIES = 14
  573. # Set path to the resource files.
  574. # Default unset.
  575. # @note Must be set for some internal plugins to work
  576. ENGINE_OPTION_PATH_RESOURCES = 15
  577. # Set frontend winId, used to define as parent window for plugin UIs.
  578. ENGINE_OPTION_FRONTEND_WIN_ID = 16
  579. # ------------------------------------------------------------------------------------------------------------
  580. # Engine Process Mode
  581. # Engine process mode.
  582. # @see ENGINE_OPTION_PROCESS_MODE
  583. # Single client mode.
  584. # Inputs and outputs are added dynamically as needed by plugins.
  585. ENGINE_PROCESS_MODE_SINGLE_CLIENT = 0
  586. # Multiple client mode.
  587. # It has 1 master client + 1 client per plugin.
  588. ENGINE_PROCESS_MODE_MULTIPLE_CLIENTS = 1
  589. # Single client, 'rack' mode.
  590. # Processes plugins in order of Id, with forced stereo always on.
  591. ENGINE_PROCESS_MODE_CONTINUOUS_RACK = 2
  592. # Single client, 'patchbay' mode.
  593. ENGINE_PROCESS_MODE_PATCHBAY = 3
  594. # Special mode, used in plugin-bridges only.
  595. ENGINE_PROCESS_MODE_BRIDGE = 4
  596. # ------------------------------------------------------------------------------------------------------------
  597. # Engine Transport Mode
  598. # Engine transport mode.
  599. # @see ENGINE_OPTION_TRANSPORT_MODE
  600. # Internal transport mode.
  601. ENGINE_TRANSPORT_MODE_INTERNAL = 0
  602. # Transport from JACK.
  603. # Only available if driver name is "JACK".
  604. ENGINE_TRANSPORT_MODE_JACK = 1
  605. # Transport from host, used when Carla is a plugin.
  606. ENGINE_TRANSPORT_MODE_PLUGIN = 2
  607. # Special mode, used in plugin-bridges only.
  608. ENGINE_TRANSPORT_MODE_BRIDGE = 3
  609. # ------------------------------------------------------------------------------------------------------------
  610. # File Callback Opcode
  611. # File callback opcodes.
  612. # Front-ends must always block-wait for user input.
  613. # @see FileCallbackFunc and carla_set_file_callback()
  614. # Debug.
  615. # This opcode is undefined and used only for testing purposes.
  616. FILE_CALLBACK_DEBUG = 0
  617. # Open file or folder.
  618. FILE_CALLBACK_OPEN = 1
  619. # Save file or folder.
  620. FILE_CALLBACK_SAVE = 2
  621. # ------------------------------------------------------------------------------------------------------------
  622. # Patchbay Icon
  623. # The icon of a patchbay client/group.
  624. # Generic application icon.
  625. # Used for all non-plugin clients that don't have a specific icon.
  626. PATCHBAY_ICON_APPLICATION = 0
  627. # Plugin icon.
  628. # Used for all plugin clients that don't have a specific icon.
  629. PATCHBAY_ICON_PLUGIN = 1
  630. # Hardware icon.
  631. # Used for hardware (audio or MIDI) clients.
  632. PATCHBAY_ICON_HARDWARE = 2
  633. # Carla icon.
  634. # Used for the main app.
  635. PATCHBAY_ICON_CARLA = 3
  636. # DISTRHO icon.
  637. # Used for DISTRHO based plugins.
  638. PATCHBAY_ICON_DISTRHO = 4
  639. # File icon.
  640. # Used for file type plugins (like GIG and SF2).
  641. PATCHBAY_ICON_FILE = 5
  642. # ------------------------------------------------------------------------------------------------------------
  643. # Carla Backend API (C stuff)
  644. # Engine callback function.
  645. # Front-ends must never block indefinitely during a callback.
  646. # @see EngineCallbackOpcode and carla_set_engine_callback()
  647. EngineCallbackFunc = CFUNCTYPE(None, c_void_p, c_enum, c_uint, c_int, c_int, c_float, c_char_p)
  648. # File callback function.
  649. # @see FileCallbackOpcode
  650. FileCallbackFunc = CFUNCTYPE(c_char_p, c_void_p, c_enum, c_bool, c_char_p, c_char_p)
  651. # Parameter data.
  652. class ParameterData(Structure):
  653. _fields_ = [
  654. # This parameter type.
  655. ("type", c_enum),
  656. # This parameter hints.
  657. # @see ParameterHints
  658. ("hints", c_uint),
  659. # Index as seen by Carla.
  660. ("index", c_int32),
  661. # Real index as seen by plugins.
  662. ("rindex", c_int32),
  663. # Currently mapped MIDI CC.
  664. # A value lower than 0 means invalid or unused.
  665. # Maximum allowed value is 95 (0x5F).
  666. ("midiCC", c_int16),
  667. # Currently mapped MIDI channel.
  668. # Counts from 0 to 15.
  669. ("midiChannel", c_uint8)
  670. ]
  671. # Parameter ranges.
  672. class ParameterRanges(Structure):
  673. _fields_ = [
  674. # Default value.
  675. ("def", c_float),
  676. # Minimum value.
  677. ("min", c_float),
  678. # Maximum value.
  679. ("max", c_float),
  680. # Regular, single step value.
  681. ("step", c_float),
  682. # Small step value.
  683. ("stepSmall", c_float),
  684. # Large step value.
  685. ("stepLarge", c_float)
  686. ]
  687. # MIDI Program data.
  688. class MidiProgramData(Structure):
  689. _fields_ = [
  690. # MIDI bank.
  691. ("bank", c_uint32),
  692. # MIDI program.
  693. ("program", c_uint32),
  694. # MIDI program name.
  695. ("name", c_char_p)
  696. ]
  697. # Custom data, used for saving key:value 'dictionaries'.
  698. class CustomData(Structure):
  699. _fields_ = [
  700. # Value type, in URI form.
  701. # @see CustomDataTypes
  702. ("type", c_char_p),
  703. # Key.
  704. # @see CustomDataKeys
  705. ("key", c_char_p),
  706. # Value.
  707. ("value", c_char_p)
  708. ]
  709. # Engine driver device information.
  710. class EngineDriverDeviceInfo(Structure):
  711. _fields_ = [
  712. # This driver device hints.
  713. # @see EngineDriverHints
  714. ("hints", c_uint),
  715. # Available buffer sizes.
  716. # Terminated with 0.
  717. ("bufferSizes", POINTER(c_uint32)),
  718. # Available sample rates.
  719. # Terminated with 0.0.
  720. ("sampleRates", POINTER(c_double))
  721. ]
  722. # ------------------------------------------------------------------------------------------------------------
  723. # Carla Backend API (Python compatible stuff)
  724. # @see ParameterData
  725. PyParameterData = {
  726. 'type': PARAMETER_UNKNOWN,
  727. 'hints': 0x0,
  728. 'index': PARAMETER_NULL,
  729. 'rindex': -1,
  730. 'midiCC': -1,
  731. 'midiChannel': 0
  732. }
  733. # @see ParameterRanges
  734. PyParameterRanges = {
  735. 'def': 0.0,
  736. 'min': 0.0,
  737. 'max': 1.0,
  738. 'step': 0.01,
  739. 'stepSmall': 0.0001,
  740. 'stepLarge': 0.1
  741. }
  742. # @see MidiProgramData
  743. PyMidiProgramData = {
  744. 'bank': 0,
  745. 'program': 0,
  746. 'name': None
  747. }
  748. # @see CustomData
  749. PyCustomData = {
  750. 'type': None,
  751. 'key': None,
  752. 'value': None
  753. }
  754. # @see EngineDriverDeviceInfo
  755. PyEngineDriverDeviceInfo = {
  756. 'hints': 0x0,
  757. 'bufferSizes': [],
  758. 'sampleRates': []
  759. }
  760. # ------------------------------------------------------------------------------------------------------------
  761. # Carla Host API (C stuff)
  762. # Information about a loaded plugin.
  763. # @see carla_get_plugin_info()
  764. class CarlaPluginInfo(Structure):
  765. _fields_ = [
  766. # Plugin type.
  767. ("type", c_enum),
  768. # Plugin category.
  769. ("category", c_enum),
  770. # Plugin hints.
  771. # @see PluginHints
  772. ("hints", c_uint),
  773. # Plugin options available for the user to change.
  774. # @see PluginOptions
  775. ("optionsAvailable", c_uint),
  776. # Plugin options currently enabled.
  777. # Some options are enabled but not available, which means they will always be on.
  778. # @see PluginOptions
  779. ("optionsEnabled", c_uint),
  780. # Plugin filename.
  781. # This can be the plugin binary or resource file.
  782. ("filename", c_char_p),
  783. # Plugin name.
  784. # This name is unique within a Carla instance.
  785. # @see carla_get_real_plugin_name()
  786. ("name", c_char_p),
  787. # Plugin label or URI.
  788. ("label", c_char_p),
  789. # Plugin author/maker.
  790. ("maker", c_char_p),
  791. # Plugin copyright/license.
  792. ("copyright", c_char_p),
  793. # Icon name for this plugin, in lowercase.
  794. # Default is "plugin".
  795. ("iconName", c_char_p),
  796. # Plugin unique Id.
  797. # This Id is dependant on the plugin type and may sometimes be 0.
  798. ("uniqueId", c_int64)
  799. ]
  800. # Information about an internal Carla plugin.
  801. # @see carla_get_internal_plugin_info()
  802. class CarlaNativePluginInfo(Structure):
  803. _fields_ = [
  804. # Plugin category.
  805. ("category", c_enum),
  806. # Plugin hints.
  807. # @see PluginHints
  808. ("hints", c_uint),
  809. # Number of audio inputs.
  810. ("audioIns", c_uint32),
  811. # Number of audio outputs.
  812. ("audioOuts", c_uint32),
  813. # Number of MIDI inputs.
  814. ("midiIns", c_uint32),
  815. # Number of MIDI outputs.
  816. ("midiOuts", c_uint32),
  817. # Number of input parameters.
  818. ("parameterIns", c_uint32),
  819. # Number of output parameters.
  820. ("parameterOuts", c_uint32),
  821. # Plugin name.
  822. ("name", c_char_p),
  823. # Plugin label.
  824. ("label", c_char_p),
  825. # Plugin author/maker.
  826. ("maker", c_char_p),
  827. # Plugin copyright/license.
  828. ("copyright", c_char_p)
  829. ]
  830. # Port count information, used for Audio and MIDI ports and parameters.
  831. # @see carla_get_audio_port_count_info()
  832. # @see carla_get_midi_port_count_info()
  833. # @see carla_get_parameter_count_info()
  834. class CarlaPortCountInfo(Structure):
  835. _fields_ = [
  836. # Number of inputs.
  837. ("ins", c_uint32),
  838. # Number of outputs.
  839. ("outs", c_uint32)
  840. ]
  841. # Parameter information.
  842. # @see carla_get_parameter_info()
  843. class CarlaParameterInfo(Structure):
  844. _fields_ = [
  845. # Parameter name.
  846. ("name", c_char_p),
  847. # Parameter symbol.
  848. ("symbol", c_char_p),
  849. # Parameter unit.
  850. ("unit", c_char_p),
  851. # Number of scale points.
  852. # @see CarlaScalePointInfo
  853. ("scalePointCount", c_uint32)
  854. ]
  855. # Parameter scale point information.
  856. # @see carla_get_parameter_scalepoint_info()
  857. class CarlaScalePointInfo(Structure):
  858. _fields_ = [
  859. # Scale point value.
  860. ("value", c_float),
  861. # Scale point label.
  862. ("label", c_char_p)
  863. ]
  864. # Transport information.
  865. # @see carla_get_transport_info()
  866. class CarlaTransportInfo(Structure):
  867. _fields_ = [
  868. # Wherever transport is playing.
  869. ("playing", c_bool),
  870. # Current transport frame.
  871. ("frame", c_uint64),
  872. # Bar
  873. ("bar", c_int32),
  874. # Beat
  875. ("beat", c_int32),
  876. # Tick
  877. ("tick", c_int32),
  878. # Beats per minute.
  879. ("bpm", c_double)
  880. ]
  881. # ------------------------------------------------------------------------------------------------------------
  882. # Carla Host API (Python compatible stuff)
  883. # @see CarlaPluginInfo
  884. PyCarlaPluginInfo = {
  885. 'type': PLUGIN_NONE,
  886. 'category': PLUGIN_CATEGORY_NONE,
  887. 'hints': 0x0,
  888. 'optionsAvailable': 0x0,
  889. 'optionsEnabled': 0x0,
  890. 'filename': None,
  891. 'name': None,
  892. 'label': None,
  893. 'maker': None,
  894. 'copyright': None,
  895. 'iconName': None,
  896. 'uniqueId': 0
  897. }
  898. # @see CarlaPortCountInfo
  899. PyCarlaPortCountInfo = {
  900. 'ins': 0,
  901. 'outs': 0
  902. }
  903. # @see CarlaParameterInfo
  904. PyCarlaParameterInfo = {
  905. 'name': None,
  906. 'symbol': None,
  907. 'unit': None,
  908. 'scalePointCount': 0,
  909. }
  910. # @see CarlaScalePointInfo
  911. PyCarlaScalePointInfo = {
  912. 'value': 0.0,
  913. 'label': None
  914. }
  915. # @see CarlaTransportInfo
  916. PyCarlaTransportInfo = {
  917. "playing": False,
  918. "frame": 0,
  919. "bar": 0,
  920. "beat": 0,
  921. "tick": 0,
  922. "bpm": 0.0
  923. }
  924. # ------------------------------------------------------------------------------------------------------------
  925. # Set BINARY_NATIVE
  926. if HAIKU or LINUX or MACOS:
  927. BINARY_NATIVE = BINARY_POSIX64 if kIs64bit else BINARY_POSIX32
  928. elif WINDOWS:
  929. BINARY_NATIVE = BINARY_WIN64 if kIs64bit else BINARY_WIN32
  930. else:
  931. BINARY_NATIVE = BINARY_OTHER
  932. # ------------------------------------------------------------------------------------------------------------
  933. # Python Host object (Control/Standalone)
  934. class Host(object):
  935. def __init__(self, libName):
  936. object.__init__(self)
  937. self._init(libName)
  938. # Get the complete license text of used third-party code and features.
  939. # Returned string is in basic html format.
  940. def get_complete_license_text(self):
  941. return charPtrToString(self.lib.carla_get_complete_license_text())
  942. # Get all the supported file extensions in carla_load_file().
  943. # Returned string uses this syntax:
  944. # @code
  945. # "*.ext1;*.ext2;*.ext3"
  946. # @endcode
  947. def get_supported_file_extensions(self):
  948. return charPtrToString(self.lib.carla_get_supported_file_extensions())
  949. # Get how many engine drivers are available.
  950. def get_engine_driver_count(self):
  951. return int(self.lib.carla_get_engine_driver_count())
  952. # Get an engine driver name.
  953. # @param index Driver index
  954. def get_engine_driver_name(self, index):
  955. return charPtrToString(self.lib.carla_get_engine_driver_name(index))
  956. # Get the device names of an engine driver.
  957. # @param index Driver index
  958. def get_engine_driver_device_names(self, index):
  959. return charPtrPtrToStringList(self.lib.carla_get_engine_driver_device_names(index))
  960. # Get information about a device driver.
  961. # @param index Driver index
  962. # @param name Device name
  963. def get_engine_driver_device_info(self, index, name):
  964. return structToDict(self.lib.carla_get_engine_driver_device_info(index, name.encode("utf-8")).contents)
  965. # Get how many internal plugins are available.
  966. def get_internal_plugin_count(self):
  967. return int(self.lib.carla_get_internal_plugin_count())
  968. # Get information about an internal plugin.
  969. # @param index Internal plugin Id
  970. def get_internal_plugin_info(self, index):
  971. return structToDict(self.lib.carla_get_internal_plugin_info(index).contents)
  972. # Initialize the engine.
  973. # Make sure to call carla_engine_idle() at regular intervals afterwards.
  974. # @param driverName Driver to use
  975. # @param clientName Engine master client name
  976. def engine_init(self, driverName, clientName):
  977. return bool(self.lib.carla_engine_init(driverName.encode("utf-8"), clientName.encode("utf-8")))
  978. # Close the engine.
  979. # This function always closes the engine even if it returns false.
  980. # In other words, even when something goes wrong when closing the engine it still be closed nonetheless.
  981. def engine_close(self):
  982. return bool(self.lib.carla_engine_close())
  983. # Idle the engine.
  984. # Do not call this if the engine is not running.
  985. def engine_idle(self):
  986. self.lib.carla_engine_idle()
  987. # Check if the engine is running.
  988. def is_engine_running(self):
  989. return bool(self.lib.carla_is_engine_running())
  990. # Tell the engine it's about to close.
  991. # This is used to prevent the engine thread(s) from reactivating.
  992. def set_engine_about_to_close(self):
  993. self.lib.carla_set_engine_about_to_close()
  994. # Set the engine callback function.
  995. # @param func Callback function
  996. def set_engine_callback(self, func):
  997. self._engineCallback = EngineCallbackFunc(func)
  998. self.lib.carla_set_engine_callback(self._engineCallback, None)
  999. # Set an engine option.
  1000. # @param option Option
  1001. # @param value Value as number
  1002. # @param valueStr Value as string
  1003. def set_engine_option(self, option, value, valueStr):
  1004. self.lib.carla_set_engine_option(option, value, valueStr.encode("utf-8"))
  1005. # Set the file callback function.
  1006. # @param func Callback function
  1007. # @param ptr Callback pointer
  1008. def set_file_callback(self, func):
  1009. self._fileCallback = FileCallbackFunc(func)
  1010. self.lib.carla_set_file_callback(self._fileCallback, None)
  1011. # Load a file of any type.\n
  1012. # This will try to load a generic file as a plugin,
  1013. # either by direct handling (Csound, GIG, SF2 and SFZ) or by using an internal plugin (like Audio and MIDI).
  1014. # @param Filename Filename
  1015. # @see carla_get_supported_file_extensions()
  1016. def load_file(self, filename):
  1017. return bool(self.lib.carla_load_file(filename.encode("utf-8")))
  1018. # Load a Carla project file.
  1019. # @param Filename Filename
  1020. # @note Currently loaded plugins are not removed; call carla_remove_all_plugins() first if needed.
  1021. def load_project(self, filename):
  1022. return bool(self.lib.carla_load_project(filename.encode("utf-8")))
  1023. # Save current project to a file.
  1024. # @param Filename Filename
  1025. def save_project(self, filename):
  1026. return bool(self.lib.carla_save_project(filename.encode("utf-8")))
  1027. # Connect two patchbay ports.
  1028. # @param groupIdA Output group
  1029. # @param portIdA Output port
  1030. # @param groupIdB Input group
  1031. # @param portIdB Input port
  1032. # @see ENGINE_CALLBACK_PATCHBAY_CONNECTION_ADDED
  1033. def patchbay_connect(self, groupIdA, portIdA, groupIdB, portIdB):
  1034. return bool(self.lib.carla_patchbay_connect(groupIdA, portIdA, groupIdB, portIdB))
  1035. # Disconnect two patchbay ports.
  1036. # @param connectionId Connection Id
  1037. # @see ENGINE_CALLBACK_PATCHBAY_CONNECTION_REMOVED
  1038. def patchbay_disconnect(self, connectionId):
  1039. return bool(self.lib.carla_patchbay_disconnect(connectionId))
  1040. # Force the engine to resend all patchbay clients, ports and connections again.
  1041. def patchbay_refresh(self):
  1042. return bool(self.lib.carla_patchbay_refresh())
  1043. # Start playback of the engine transport.
  1044. def transport_play(self):
  1045. self.lib.carla_transport_play()
  1046. # Pause the engine transport.
  1047. def transport_pause(self):
  1048. self.lib.carla_transport_pause()
  1049. # Relocate the engine transport to a specific frame.
  1050. # @param frames Frame to relocate to.
  1051. def transport_relocate(self, frame):
  1052. self.lib.carla_transport_relocate(frame)
  1053. # Get the current transport frame.
  1054. def get_current_transport_frame(self):
  1055. return bool(self.lib.carla_get_current_transport_frame())
  1056. # Get the engine transport information.
  1057. def get_transport_info(self):
  1058. return structToDict(self.lib.carla_get_transport_info().contents)
  1059. # Add a new plugin.
  1060. # If you don't know the binary type use the BINARY_NATIVE macro.
  1061. # @param btype Binary type
  1062. # @param ptype Plugin type
  1063. # @param filename Filename, if applicable
  1064. # @param name Name of the plugin, can be NULL
  1065. # @param label Plugin label, if applicable
  1066. # @param uniqueId Plugin unique Id, if applicable
  1067. # @param extraPtr Extra pointer, defined per plugin type
  1068. def add_plugin(self, btype, ptype, filename, name, label, uniqueId, extraPtr):
  1069. cfilename = filename.encode("utf-8") if filename else None
  1070. cname = name.encode("utf-8") if name else None
  1071. clabel = label.encode("utf-8") if label else None
  1072. return bool(self.lib.carla_add_plugin(btype, ptype, cfilename, cname, clabel, uniqueId, cast(extraPtr, c_void_p)))
  1073. # Remove a plugin.
  1074. # @param pluginId Plugin to remove.
  1075. def remove_plugin(self, pluginId):
  1076. return bool(self.lib.carla_remove_plugin(pluginId))
  1077. # Remove all plugins.
  1078. def remove_all_plugins(self):
  1079. return bool(self.lib.carla_remove_all_plugins())
  1080. # Rename a plugin.\n
  1081. # Returns the new name, or NULL if the operation failed.
  1082. # @param pluginId Plugin to rename
  1083. # @param newName New plugin name
  1084. def rename_plugin(self, pluginId, newName):
  1085. return charPtrToString(self.lib.carla_rename_plugin(pluginId, newName.encode("utf-8")))
  1086. # Clone a plugin.
  1087. # @param pluginId Plugin to clone
  1088. def clone_plugin(self, pluginId):
  1089. return bool(self.lib.carla_clone_plugin(pluginId))
  1090. # Prepare replace of a plugin.\n
  1091. # The next call to carla_add_plugin() will use this id, replacing the current plugin.
  1092. # @param pluginId Plugin to replace
  1093. # @note This function requires carla_add_plugin() to be called afterwards *as soon as possible*.
  1094. def replace_plugin(self, pluginId):
  1095. return bool(self.lib.carla_replace_plugin(pluginId))
  1096. # Switch two plugins positions.
  1097. # @param pluginIdA Plugin A
  1098. # @param pluginIdB Plugin B
  1099. def switch_plugins(self, pluginIdA, pluginIdB):
  1100. return bool(self.lib.carla_switch_plugins(pluginIdA, pluginIdB))
  1101. # Load a plugin state.
  1102. # @param pluginId Plugin
  1103. # @param filename Path to plugin state
  1104. # @see carla_save_plugin_state()
  1105. def load_plugin_state(self, pluginId, filename):
  1106. return bool(self.lib.carla_load_plugin_state(pluginId, filename.encode("utf-8")))
  1107. # Save a plugin state.
  1108. # @param pluginId Plugin
  1109. # @param filename Path to plugin state
  1110. # @see carla_load_plugin_state()
  1111. def save_plugin_state(self, pluginId, filename):
  1112. return bool(self.lib.carla_save_plugin_state(pluginId, filename.encode("utf-8")))
  1113. # Get information from a plugin.
  1114. # @param pluginId Plugin
  1115. def get_plugin_info(self, pluginId):
  1116. return structToDict(self.lib.carla_get_plugin_info(pluginId).contents)
  1117. # Get audio port count information from a plugin.
  1118. # @param pluginId Plugin
  1119. def get_audio_port_count_info(self, pluginId):
  1120. return structToDict(self.lib.carla_get_audio_port_count_info(pluginId).contents)
  1121. # Get MIDI port count information from a plugin.
  1122. # @param pluginId Plugin
  1123. def get_midi_port_count_info(self, pluginId):
  1124. return structToDict(self.lib.carla_get_midi_port_count_info(pluginId).contents)
  1125. # Get parameter count information from a plugin.
  1126. # @param pluginId Plugin
  1127. def get_parameter_count_info(self, pluginId):
  1128. return structToDict(self.lib.carla_get_parameter_count_info(pluginId).contents)
  1129. # Get parameter information from a plugin.
  1130. # @param pluginId Plugin
  1131. # @param parameterId Parameter index
  1132. # @see carla_get_parameter_count()
  1133. def get_parameter_info(self, pluginId, parameterId):
  1134. return structToDict(self.lib.carla_get_parameter_info(pluginId, parameterId).contents)
  1135. # Get parameter scale point information from a plugin.
  1136. # @param pluginId Plugin
  1137. # @param parameterId Parameter index
  1138. # @param scalePointId Parameter scale-point index
  1139. # @see CarlaParameterInfo::scalePointCount
  1140. def get_parameter_scalepoint_info(self, pluginId, parameterId, scalePointId):
  1141. return structToDict(self.lib.carla_get_parameter_scalepoint_info(pluginId, parameterId, scalePointId).contents)
  1142. # Get a plugin's parameter data.
  1143. # @param pluginId Plugin
  1144. # @param parameterId Parameter index
  1145. # @see carla_get_parameter_count()
  1146. def get_parameter_data(self, pluginId, parameterId):
  1147. return structToDict(self.lib.carla_get_parameter_data(pluginId, parameterId).contents)
  1148. # Get a plugin's parameter ranges.
  1149. # @param pluginId Plugin
  1150. # @param parameterId Parameter index
  1151. # @see carla_get_parameter_count()
  1152. def get_parameter_ranges(self, pluginId, parameterId):
  1153. return structToDict(self.lib.carla_get_parameter_ranges(pluginId, parameterId).contents)
  1154. # Get a plugin's MIDI program data.
  1155. # @param pluginId Plugin
  1156. # @param midiProgramId MIDI Program index
  1157. # @see carla_get_midi_program_count()
  1158. def get_midi_program_data(self, pluginId, midiProgramId):
  1159. return structToDict(self.lib.carla_get_midi_program_data(pluginId, midiProgramId).contents)
  1160. # Get a plugin's custom data.
  1161. # @param pluginId Plugin
  1162. # @param customDataId Custom data index
  1163. # @see carla_get_custom_data_count()
  1164. def get_custom_data(self, pluginId, customDataId):
  1165. return structToDict(self.lib.carla_get_custom_data(pluginId, customDataId).contents)
  1166. # Get a plugin's chunk data.
  1167. # @param pluginId Plugin
  1168. # @see PLUGIN_OPTION_USE_CHUNKS
  1169. def get_chunk_data(self, pluginId):
  1170. return charPtrToString(self.lib.carla_get_chunk_data(pluginId))
  1171. # Get how many parameters a plugin has.
  1172. # @param pluginId Plugin
  1173. def get_parameter_count(self, pluginId):
  1174. return int(self.lib.carla_get_parameter_count(pluginId))
  1175. # Get how many programs a plugin has.
  1176. # @param pluginId Plugin
  1177. # @see carla_get_program_name()
  1178. def get_program_count(self, pluginId):
  1179. return int(self.lib.carla_get_program_count(pluginId))
  1180. # Get how many MIDI programs a plugin has.
  1181. # @param pluginId Plugin
  1182. # @see carla_get_midi_program_name() and carla_get_midi_program_data()
  1183. def get_midi_program_count(self, pluginId):
  1184. return int(self.lib.carla_get_midi_program_count(pluginId))
  1185. # Get how many custom data sets a plugin has.
  1186. # @param pluginId Plugin
  1187. # @see carla_get_custom_data()
  1188. def get_custom_data_count(self, pluginId):
  1189. return int(self.lib.carla_get_custom_data_count(pluginId))
  1190. # Get a plugin's parameter text (custom display of internal values).
  1191. # @param pluginId Plugin
  1192. # @param parameterId Parameter index
  1193. # @see PARAMETER_USES_CUSTOM_TEXT
  1194. def get_parameter_text(self, pluginId, parameterId):
  1195. return charPtrToString(self.lib.carla_get_parameter_text(pluginId, parameterId))
  1196. # Get a plugin's program name.
  1197. # @param pluginId Plugin
  1198. # @param programId Program index
  1199. # @see carla_get_program_count()
  1200. def get_program_name(self, pluginId, programId):
  1201. return charPtrToString(self.lib.carla_get_program_name(pluginId, programId))
  1202. # Get a plugin's MIDI program name.
  1203. # @param pluginId Plugin
  1204. # @param midiProgramId MIDI Program index
  1205. # @see carla_get_midi_program_count()
  1206. def get_midi_program_name(self, pluginId, midiProgramId):
  1207. return charPtrToString(self.lib.carla_get_midi_program_name(pluginId, midiProgramId))
  1208. # Get a plugin's real name.\n
  1209. # This is the name the plugin uses to identify itself; may not be unique.
  1210. # @param pluginId Plugin
  1211. def get_real_plugin_name(self, pluginId):
  1212. return charPtrToString(self.lib.carla_get_real_plugin_name(pluginId))
  1213. # Get a plugin's program index.
  1214. # @param pluginId Plugin
  1215. def get_current_program_index(self, pluginId):
  1216. return int(self.lib.carla_get_current_program_index(pluginId))
  1217. # Get a plugin's midi program index.
  1218. # @param pluginId Plugin
  1219. def get_current_midi_program_index(self, pluginId):
  1220. return int(self.lib.carla_get_current_midi_program_index(pluginId))
  1221. # Get a plugin's default parameter value.
  1222. # @param pluginId Plugin
  1223. # @param parameterId Parameter index
  1224. def get_default_parameter_value(self, pluginId, parameterId):
  1225. return float(self.lib.carla_get_default_parameter_value(pluginId, parameterId))
  1226. # Get a plugin's current parameter value.
  1227. # @param pluginId Plugin
  1228. # @param parameterId Parameter index
  1229. def get_current_parameter_value(self, pluginId, parameterId):
  1230. return float(self.lib.carla_get_current_parameter_value(pluginId, parameterId))
  1231. # Get a plugin's internal parameter value.
  1232. # @param pluginId Plugin
  1233. # @param parameterId Parameter index, maybe be negative
  1234. # @see InternalParameterIndex
  1235. def get_internal_parameter_value(self, pluginId, parameterId):
  1236. return float(self.lib.carla_get_internal_parameter_value(pluginId, parameterId))
  1237. # Get a plugin's input peak value.
  1238. # @param pluginId Plugin
  1239. # @param isLeft Wherever to get the left/mono value, otherwise right.
  1240. def get_input_peak_value(self, pluginId, isLeft):
  1241. return float(self.lib.carla_get_input_peak_value(pluginId, isLeft))
  1242. # Get a plugin's output peak value.
  1243. # @param pluginId Plugin
  1244. # @param isLeft Wherever to get the left/mono value, otherwise right.
  1245. def get_output_peak_value(self, pluginId, isLeft):
  1246. return float(self.lib.carla_get_output_peak_value(pluginId, isLeft))
  1247. # Enable a plugin's option.
  1248. # @param pluginId Plugin
  1249. # @param option An option from PluginOptions
  1250. # @param yesNo New enabled state
  1251. def set_option(self, pluginId, option, yesNo):
  1252. self.lib.carla_set_option(pluginId, option, yesNo)
  1253. # Enable or disable a plugin.
  1254. # @param pluginId Plugin
  1255. # @param onOff New active state
  1256. def set_active(self, pluginId, onOff):
  1257. self.lib.carla_set_active(pluginId, onOff)
  1258. # Change a plugin's internal dry/wet.
  1259. # @param pluginId Plugin
  1260. # @param value New dry/wet value
  1261. def set_drywet(self, pluginId, value):
  1262. self.lib.carla_set_drywet(pluginId, value)
  1263. # Change a plugin's internal volume.
  1264. # @param pluginId Plugin
  1265. # @param value New volume
  1266. def set_volume(self, pluginId, value):
  1267. self.lib.carla_set_volume(pluginId, value)
  1268. # Change a plugin's internal stereo balance, left channel.
  1269. # @param pluginId Plugin
  1270. # @param value New value
  1271. def set_balance_left(self, pluginId, value):
  1272. self.lib.carla_set_balance_left(pluginId, value)
  1273. # Change a plugin's internal stereo balance, right channel.
  1274. # @param pluginId Plugin
  1275. # @param value New value
  1276. def set_balance_right(self, pluginId, value):
  1277. self.lib.carla_set_balance_right(pluginId, value)
  1278. # Change a plugin's internal mono panning value.
  1279. # @param pluginId Plugin
  1280. # @param value New value
  1281. def set_panning(self, pluginId, value):
  1282. self.lib.carla_set_panning(pluginId, value)
  1283. # Change a plugin's internal control channel.
  1284. # @param pluginId Plugin
  1285. # @param channel New channel
  1286. def set_ctrl_channel(self, pluginId, channel):
  1287. self.lib.carla_set_ctrl_channel(pluginId, channel)
  1288. # Change a plugin's parameter value.
  1289. # @param pluginId Plugin
  1290. # @param parameterId Parameter index
  1291. # @param value New value
  1292. def set_parameter_value(self, pluginId, parameterId, value):
  1293. self.lib.carla_set_parameter_value(pluginId, parameterId, value)
  1294. # Change a plugin's parameter MIDI cc.
  1295. # @param pluginId Plugin
  1296. # @param parameterId Parameter index
  1297. # @param cc New MIDI cc
  1298. def set_parameter_midi_channel(self, pluginId, parameterId, channel):
  1299. self.lib.carla_set_parameter_midi_channel(pluginId, parameterId, channel)
  1300. # Change a plugin's parameter MIDI channel.
  1301. # @param pluginId Plugin
  1302. # @param parameterId Parameter index
  1303. # @param channel New MIDI channel
  1304. def set_parameter_midi_cc(self, pluginId, parameterId, cc):
  1305. self.lib.carla_set_parameter_midi_cc(pluginId, parameterId, cc)
  1306. # Change a plugin's current program.
  1307. # @param pluginId Plugin
  1308. # @param programId New program
  1309. def set_program(self, pluginId, programId):
  1310. self.lib.carla_set_program(pluginId, programId)
  1311. # Change a plugin's current MIDI program.
  1312. # @param pluginId Plugin
  1313. # @param midiProgramId New value
  1314. def set_midi_program(self, pluginId, midiProgramId):
  1315. self.lib.carla_set_midi_program(pluginId, midiProgramId)
  1316. # Set a plugin's custom data set.
  1317. # @param pluginId Plugin
  1318. # @param type Type
  1319. # @param key Key
  1320. # @param value New value
  1321. # @see CustomDataTypes and CustomDataKeys
  1322. def set_custom_data(self, pluginId, type_, key, value):
  1323. self.lib.carla_set_custom_data(pluginId, type_.encode("utf-8"), key.encode("utf-8"), value.encode("utf-8"))
  1324. # Set a plugin's chunk data.
  1325. # @param pluginId Plugin
  1326. # @param value New value
  1327. # @see PLUGIN_OPTION_USE_CHUNKS and carla_get_chunk_data()
  1328. def set_chunk_data(self, pluginId, chunkData):
  1329. self.lib.carla_set_chunk_data(pluginId, chunkData.encode("utf-8"))
  1330. # Tell a plugin to prepare for save.\n
  1331. # This should be called before saving custom data sets.
  1332. # @param pluginId Plugin
  1333. def prepare_for_save(self, pluginId):
  1334. self.lib.carla_prepare_for_save(pluginId)
  1335. # Reset all plugin's parameters.
  1336. # @param pluginId Plugin
  1337. def reset_parameters(self, pluginId):
  1338. self.lib.carla_reset_parameters(pluginId)
  1339. # Randomize all plugin's parameters.
  1340. # @param pluginId Plugin
  1341. def randomize_parameters(self, pluginId):
  1342. self.lib.carla_randomize_parameters(pluginId)
  1343. # Send a single note of a plugin.\n
  1344. # If velocity is 0, note-off is sent; note-on otherwise.
  1345. # @param pluginId Plugin
  1346. # @param channel Note channel
  1347. # @param note Note pitch
  1348. # @param velocity Note velocity
  1349. def send_midi_note(self, pluginId, channel, note, velocity):
  1350. self.lib.carla_send_midi_note(pluginId, channel, note, velocity)
  1351. # Tell a plugin to show its own custom UI.
  1352. # @param pluginId Plugin
  1353. # @param yesNo New UI state, visible or not
  1354. # @see PLUGIN_HAS_CUSTOM_UI
  1355. def show_custom_ui(self, pluginId, yesNo):
  1356. self.lib.carla_show_custom_ui(pluginId, yesNo)
  1357. # Get the current engine buffer size.
  1358. def get_buffer_size(self):
  1359. return int(self.lib.carla_get_buffer_size())
  1360. # Get the current engine sample rate.
  1361. def get_sample_rate(self):
  1362. return float(self.lib.carla_get_sample_rate())
  1363. # Get the last error.
  1364. def get_last_error(self):
  1365. return charPtrToString(self.lib.carla_get_last_error())
  1366. # Get the current engine OSC URL (TCP).
  1367. def get_host_osc_url_tcp(self):
  1368. return charPtrToString(self.lib.carla_get_host_osc_url_tcp())
  1369. # Get the current engine OSC URL (UDP).
  1370. def get_host_osc_url_udp(self):
  1371. return charPtrToString(self.lib.carla_get_host_osc_url_udp())
  1372. def _init(self, libName):
  1373. self.lib = cdll.LoadLibrary(libName)
  1374. self.lib.carla_get_complete_license_text.argtypes = None
  1375. self.lib.carla_get_complete_license_text.restype = c_char_p
  1376. self.lib.carla_get_supported_file_extensions.argtypes = None
  1377. self.lib.carla_get_supported_file_extensions.restype = c_char_p
  1378. self.lib.carla_get_engine_driver_count.argtypes = None
  1379. self.lib.carla_get_engine_driver_count.restype = c_uint
  1380. self.lib.carla_get_engine_driver_name.argtypes = [c_uint]
  1381. self.lib.carla_get_engine_driver_name.restype = c_char_p
  1382. self.lib.carla_get_engine_driver_device_names.argtypes = [c_uint]
  1383. self.lib.carla_get_engine_driver_device_names.restype = POINTER(c_char_p)
  1384. self.lib.carla_get_engine_driver_device_info.argtypes = [c_uint, c_char_p]
  1385. self.lib.carla_get_engine_driver_device_info.restype = POINTER(EngineDriverDeviceInfo)
  1386. self.lib.carla_get_internal_plugin_count.argtypes = None
  1387. self.lib.carla_get_internal_plugin_count.restype = c_uint
  1388. self.lib.carla_get_internal_plugin_info.argtypes = [c_uint]
  1389. self.lib.carla_get_internal_plugin_info.restype = POINTER(CarlaNativePluginInfo)
  1390. self.lib.carla_engine_init.argtypes = [c_char_p, c_char_p]
  1391. self.lib.carla_engine_init.restype = c_bool
  1392. self.lib.carla_engine_close.argtypes = None
  1393. self.lib.carla_engine_close.restype = c_bool
  1394. self.lib.carla_engine_idle.argtypes = None
  1395. self.lib.carla_engine_idle.restype = None
  1396. self.lib.carla_is_engine_running.argtypes = None
  1397. self.lib.carla_is_engine_running.restype = c_bool
  1398. self.lib.carla_set_engine_about_to_close.argtypes = None
  1399. self.lib.carla_set_engine_about_to_close.restype = None
  1400. self.lib.carla_set_engine_callback.argtypes = [EngineCallbackFunc, c_void_p]
  1401. self.lib.carla_set_engine_callback.restype = None
  1402. self.lib.carla_set_engine_option.argtypes = [c_enum, c_int, c_char_p]
  1403. self.lib.carla_set_engine_option.restype = None
  1404. self.lib.carla_set_file_callback.argtypes = [FileCallbackFunc, c_void_p]
  1405. self.lib.carla_set_file_callback.restype = None
  1406. self.lib.carla_load_file.argtypes = [c_char_p]
  1407. self.lib.carla_load_file.restype = c_bool
  1408. self.lib.carla_load_project.argtypes = [c_char_p]
  1409. self.lib.carla_load_project.restype = c_bool
  1410. self.lib.carla_save_project.argtypes = [c_char_p]
  1411. self.lib.carla_save_project.restype = c_bool
  1412. self.lib.carla_patchbay_connect.argtypes = [c_uint, c_uint, c_uint, c_uint]
  1413. self.lib.carla_patchbay_connect.restype = c_bool
  1414. self.lib.carla_patchbay_disconnect.argtypes = [c_uint]
  1415. self.lib.carla_patchbay_disconnect.restype = c_bool
  1416. self.lib.carla_patchbay_refresh.argtypes = None
  1417. self.lib.carla_patchbay_refresh.restype = c_bool
  1418. self.lib.carla_transport_play.argtypes = None
  1419. self.lib.carla_transport_play.restype = None
  1420. self.lib.carla_transport_pause.argtypes = None
  1421. self.lib.carla_transport_pause.restype = None
  1422. self.lib.carla_transport_relocate.argtypes = [c_uint64]
  1423. self.lib.carla_transport_relocate.restype = None
  1424. self.lib.carla_get_current_transport_frame.argtypes = None
  1425. self.lib.carla_get_current_transport_frame.restype = c_uint64
  1426. self.lib.carla_get_transport_info.argtypes = None
  1427. self.lib.carla_get_transport_info.restype = POINTER(CarlaTransportInfo)
  1428. self.lib.carla_add_plugin.argtypes = [c_enum, c_enum, c_char_p, c_char_p, c_char_p, c_int64, c_void_p]
  1429. self.lib.carla_add_plugin.restype = c_bool
  1430. self.lib.carla_remove_plugin.argtypes = [c_uint]
  1431. self.lib.carla_remove_plugin.restype = c_bool
  1432. self.lib.carla_remove_all_plugins.argtypes = None
  1433. self.lib.carla_remove_all_plugins.restype = c_bool
  1434. self.lib.carla_rename_plugin.argtypes = [c_uint, c_char_p]
  1435. self.lib.carla_rename_plugin.restype = c_char_p
  1436. self.lib.carla_clone_plugin.argtypes = [c_uint]
  1437. self.lib.carla_clone_plugin.restype = c_bool
  1438. self.lib.carla_replace_plugin.argtypes = [c_uint]
  1439. self.lib.carla_replace_plugin.restype = c_bool
  1440. self.lib.carla_switch_plugins.argtypes = [c_uint, c_uint]
  1441. self.lib.carla_switch_plugins.restype = c_bool
  1442. self.lib.carla_load_plugin_state.argtypes = [c_uint, c_char_p]
  1443. self.lib.carla_load_plugin_state.restype = c_bool
  1444. self.lib.carla_save_plugin_state.argtypes = [c_uint, c_char_p]
  1445. self.lib.carla_save_plugin_state.restype = c_bool
  1446. self.lib.carla_get_plugin_info.argtypes = [c_uint]
  1447. self.lib.carla_get_plugin_info.restype = POINTER(CarlaPluginInfo)
  1448. self.lib.carla_get_audio_port_count_info.argtypes = [c_uint]
  1449. self.lib.carla_get_audio_port_count_info.restype = POINTER(CarlaPortCountInfo)
  1450. self.lib.carla_get_midi_port_count_info.argtypes = [c_uint]
  1451. self.lib.carla_get_midi_port_count_info.restype = POINTER(CarlaPortCountInfo)
  1452. self.lib.carla_get_parameter_count_info.argtypes = [c_uint]
  1453. self.lib.carla_get_parameter_count_info.restype = POINTER(CarlaPortCountInfo)
  1454. self.lib.carla_get_parameter_info.argtypes = [c_uint, c_uint32]
  1455. self.lib.carla_get_parameter_info.restype = POINTER(CarlaParameterInfo)
  1456. self.lib.carla_get_parameter_scalepoint_info.argtypes = [c_uint, c_uint32, c_uint32]
  1457. self.lib.carla_get_parameter_scalepoint_info.restype = POINTER(CarlaScalePointInfo)
  1458. self.lib.carla_get_parameter_data.argtypes = [c_uint, c_uint32]
  1459. self.lib.carla_get_parameter_data.restype = POINTER(ParameterData)
  1460. self.lib.carla_get_parameter_ranges.argtypes = [c_uint, c_uint32]
  1461. self.lib.carla_get_parameter_ranges.restype = POINTER(ParameterRanges)
  1462. self.lib.carla_get_midi_program_data.argtypes = [c_uint, c_uint32]
  1463. self.lib.carla_get_midi_program_data.restype = POINTER(MidiProgramData)
  1464. self.lib.carla_get_custom_data.argtypes = [c_uint, c_uint32]
  1465. self.lib.carla_get_custom_data.restype = POINTER(CustomData)
  1466. self.lib.carla_get_chunk_data.argtypes = [c_uint]
  1467. self.lib.carla_get_chunk_data.restype = c_char_p
  1468. self.lib.carla_get_parameter_count.argtypes = [c_uint]
  1469. self.lib.carla_get_parameter_count.restype = c_uint32
  1470. self.lib.carla_get_program_count.argtypes = [c_uint]
  1471. self.lib.carla_get_program_count.restype = c_uint32
  1472. self.lib.carla_get_midi_program_count.argtypes = [c_uint]
  1473. self.lib.carla_get_midi_program_count.restype = c_uint32
  1474. self.lib.carla_get_custom_data_count.argtypes = [c_uint]
  1475. self.lib.carla_get_custom_data_count.restype = c_uint32
  1476. self.lib.carla_get_parameter_text.argtypes = [c_uint, c_uint32]
  1477. self.lib.carla_get_parameter_text.restype = c_char_p
  1478. self.lib.carla_get_program_name.argtypes = [c_uint, c_uint32]
  1479. self.lib.carla_get_program_name.restype = c_char_p
  1480. self.lib.carla_get_midi_program_name.argtypes = [c_uint, c_uint32]
  1481. self.lib.carla_get_midi_program_name.restype = c_char_p
  1482. self.lib.carla_get_real_plugin_name.argtypes = [c_uint]
  1483. self.lib.carla_get_real_plugin_name.restype = c_char_p
  1484. self.lib.carla_get_current_program_index.argtypes = [c_uint]
  1485. self.lib.carla_get_current_program_index.restype = c_int32
  1486. self.lib.carla_get_current_midi_program_index.argtypes = [c_uint]
  1487. self.lib.carla_get_current_midi_program_index.restype = c_int32
  1488. self.lib.carla_get_default_parameter_value.argtypes = [c_uint, c_uint32]
  1489. self.lib.carla_get_default_parameter_value.restype = c_float
  1490. self.lib.carla_get_current_parameter_value.argtypes = [c_uint, c_uint32]
  1491. self.lib.carla_get_current_parameter_value.restype = c_float
  1492. self.lib.carla_get_internal_parameter_value.argtypes = [c_uint, c_int32]
  1493. self.lib.carla_get_internal_parameter_value.restype = c_float
  1494. self.lib.carla_get_input_peak_value.argtypes = [c_uint, c_bool]
  1495. self.lib.carla_get_input_peak_value.restype = c_float
  1496. self.lib.carla_get_output_peak_value.argtypes = [c_uint, c_bool]
  1497. self.lib.carla_get_output_peak_value.restype = c_float
  1498. self.lib.carla_set_option.argtypes = [c_uint, c_uint, c_bool]
  1499. self.lib.carla_set_option.restype = None
  1500. self.lib.carla_set_active.argtypes = [c_uint, c_bool]
  1501. self.lib.carla_set_active.restype = None
  1502. self.lib.carla_set_drywet.argtypes = [c_uint, c_float]
  1503. self.lib.carla_set_drywet.restype = None
  1504. self.lib.carla_set_volume.argtypes = [c_uint, c_float]
  1505. self.lib.carla_set_volume.restype = None
  1506. self.lib.carla_set_balance_left.argtypes = [c_uint, c_float]
  1507. self.lib.carla_set_balance_left.restype = None
  1508. self.lib.carla_set_balance_right.argtypes = [c_uint, c_float]
  1509. self.lib.carla_set_balance_right.restype = None
  1510. self.lib.carla_set_panning.argtypes = [c_uint, c_float]
  1511. self.lib.carla_set_panning.restype = None
  1512. self.lib.carla_set_ctrl_channel.argtypes = [c_uint, c_int8]
  1513. self.lib.carla_set_ctrl_channel.restype = None
  1514. self.lib.carla_set_parameter_value.argtypes = [c_uint, c_uint32, c_float]
  1515. self.lib.carla_set_parameter_value.restype = None
  1516. self.lib.carla_set_parameter_midi_channel.argtypes = [c_uint, c_uint32, c_uint8]
  1517. self.lib.carla_set_parameter_midi_channel.restype = None
  1518. self.lib.carla_set_parameter_midi_cc.argtypes = [c_uint, c_uint32, c_int16]
  1519. self.lib.carla_set_parameter_midi_cc.restype = None
  1520. self.lib.carla_set_program.argtypes = [c_uint, c_uint32]
  1521. self.lib.carla_set_program.restype = None
  1522. self.lib.carla_set_midi_program.argtypes = [c_uint, c_uint32]
  1523. self.lib.carla_set_midi_program.restype = None
  1524. self.lib.carla_set_custom_data.argtypes = [c_uint, c_char_p, c_char_p, c_char_p]
  1525. self.lib.carla_set_custom_data.restype = None
  1526. self.lib.carla_set_chunk_data.argtypes = [c_uint, c_char_p]
  1527. self.lib.carla_set_chunk_data.restype = None
  1528. self.lib.carla_prepare_for_save.argtypes = [c_uint]
  1529. self.lib.carla_prepare_for_save.restype = None
  1530. self.lib.carla_reset_parameters.argtypes = [c_uint]
  1531. self.lib.carla_reset_parameters.restype = None
  1532. self.lib.carla_randomize_parameters.argtypes = [c_uint]
  1533. self.lib.carla_randomize_parameters.restype = None
  1534. self.lib.carla_send_midi_note.argtypes = [c_uint, c_uint8, c_uint8, c_uint8]
  1535. self.lib.carla_send_midi_note.restype = None
  1536. self.lib.carla_show_custom_ui.argtypes = [c_uint, c_bool]
  1537. self.lib.carla_show_custom_ui.restype = None
  1538. self.lib.carla_get_buffer_size.argtypes = None
  1539. self.lib.carla_get_buffer_size.restype = c_uint32
  1540. self.lib.carla_get_sample_rate.argtypes = None
  1541. self.lib.carla_get_sample_rate.restype = c_double
  1542. self.lib.carla_get_last_error.argtypes = None
  1543. self.lib.carla_get_last_error.restype = c_char_p
  1544. self.lib.carla_get_host_osc_url_tcp.argtypes = None
  1545. self.lib.carla_get_host_osc_url_tcp.restype = c_char_p
  1546. self.lib.carla_get_host_osc_url_udp.argtypes = None
  1547. self.lib.carla_get_host_osc_url_udp.restype = c_char_p