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.

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